-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "react-next",
"version": "1.0.0",
"description": "next",
"main": "index.js",
"scripts": {
"dev": "rm -rf .next && node server/server.js",
"build": "rm -rf .next && next build",
"start": "NODE_ENV=production pm2 start server/server.js",
"stop": "pm2 stop server/server.js",
"build-analyze": "BUNDLE_ANALYZE=both yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyy1115/react-next.git"
},
"keywords": [
"react",
"next"
],
"author": "hyy",
"license": "MIT",
"dependencies": {
"@zeit/next-bundle-analyzer": "^0.1.1",
"@zeit/next-css": "^0.1.5",
"@zeit/next-sass": "^0.1.2",
"@zeit/next-source-maps": "^0.0.2",
"autoprefixer": "^7.1.5",
"axios": "^0.16.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-wrap-in-js": "^1.1.1",
"compression": "^1.7.1",
"express": "^4.16.3",
"file-loader": "^1.1.5",
"glob": "^7.1.2",
"lru-cache": "^4.1.1",
"module-alias": "^2.0.1",
"next": "^5.0.0",
"next-redux-wrapper": "^1.3.4",
"next-routes": "^1.1.0",
"nodemon": "^1.17.3",
"normalize.css": "^7.0.0",
"path": "^0.12.7",
"pm2": "^2.7.1",
"postcss-adaptive": "^0.5.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.0.8",
"raw-loader": "^0.5.1",
"react": "latest",
"react-dom": "latest",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"styled-jsx": "^2.1.1",
"styled-jsx-plugin-postcss": "^0.1.0",
"styled-jsx-plugin-sass": "^0.1.0"
},
"devDependencies": {
"babel-plugin-css-modules-transform": "^1.2.7",
"node-sass": "^4.5.3",
"postcss": "^6.0.13",
"postcss-cssnext": "^3.0.2"
}
}