-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 899 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "mshwery.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"clean": "rm -rf node_modules/.cache && rm -rf out",
"export": "next export",
"start": "next start",
"deploy": "yarn build && yarn export && cp .nojekyll out/.nojekyll && cp CNAME out/CNAME && gh-pages -d out -t true"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^10.2.0",
"clsx": "^1.1.1",
"convert-units": "^2.3.4",
"next": "10.0.9",
"otion": "^0.6.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-feather": "^2.0.9"
},
"devDependencies": {
"@types/convert-units": "^2.3.3",
"@types/google.analytics": "^0.0.41",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"gh-pages": "^3.1.0",
"typescript": "^4.2.3"
}
}