-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all -p start-config next-dev",
"build": "npm-run-all build-config next-build",
"export": "yarn build && next export",
"next-dev": "next dev -p 9000",
"next-build": "next build",
"start": "next start -p 9000",
"prod": "npm-run-all build start",
"start-config": "cross-env NODE_ENV=development webpack -d --watch --progress --config config/webpack.config.js",
"build-config": "cross-env NODE_ENV=production webpack --config config/webpack.config.js",
"predeploy": "yarn export",
"deploy": "yarn predeploy && gh-pages -d ./out"
},
"homepage": "https://liuguanhua.github.io",
"dependencies": {
"@svgr/webpack": "^5.4.0",
"babel-loader": "^8.1.0",
"classnames": "^2.2.6",
"eases": "^1.0.8",
"mockjs": "^1.1.0",
"next": "9.3.6",
"next-images": "^1.4.0",
"normalize.css": "^8.0.1",
"rc-dialog": "^8.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-infinite-scroller": "^1.2.4",
"react-lazyload": "^2.6.8",
"react-share-components": "^0.1.4",
"react-slide-toggle": "^0.3.5",
"sass": "^1.26.5",
"store": "^2.0.12",
"throttle-debounce": "^2.1.0",
"url-loader": "^4.1.0",
"webpack-spritesmith": "^1.1.0"
},
"devDependencies": {
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"gh-pages": "^3.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.8.3",
"webpack-cli": "^3.3.11"
}
}