-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "next-template",
"version": "1.0.0",
"description": "next.js项目模板",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development node server",
"start": "npm run build && cross-env NODE_ENV=production node server",
"export": "next export",
"build": "next build ",
"pro": "npm install && npm run build && pm2 startOrRestart ecosystem.config.js --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jinjinwa/next-template.git"
},
"keywords": [
"next.js",
"react",
"react-ssr"
],
"author": "superman",
"license": "ISC",
"bugs": {
"url": "https://github.com/jinjinwa/next-template/issues"
},
"homepage": "https://github.com/jinjinwa/next-template#readme",
"dependencies": {
"antd-mobile": "2.2.2",
"cross-env": "^5.1.5",
"express": "^4.16.3",
"mobx": "^4.1.1",
"mobx-react": "^5.0.0",
"next": "^6.1.1",
"nprogress": "^0.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"vconsole": "^3.2.0",
"next-page-transitions": "1.0.0-alpha.2",
"compression": "^1.7.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-inline-dotenv": "^1.1.1",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-wrap-in-js": "^1.1.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^5.1.0",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"glob": "^7.1.2",
"less": "^2.7.3",
"less-loader": "^4.0.6",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.0.9",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"require-hacker": "^3.0.0",
"styled-jsx-plugin-less": "0.0.1-alpha.1",
"svg-sprite-loader": "0.3.1"
}
}