-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 KB
/
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
34
{
"name": "ww-tech.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll",
"deploy": "npm run export && git add -f out/ && git commit -m \"Deploy Next.js to gh-pages\" && git push origin :master && git subtree push --prefix out origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ww-tech/ww-tech.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ww-tech/ww-tech.github.io/issues"
},
"homepage": "https://github.com/ww-tech/ww-tech.github.io#readme",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"next": "^9.0.1",
"next-compose-plugins": "^2.2.0",
"next-transpile-modules": "^2.3.1",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-github-btn": "^1.0.5"
}
}