-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "custom-server-koa",
"version": "1.0.0",
"scripts": {
"start": "node server.js",
"lint-fix": "eslint --fix *.js",
"build": "next build",
"release": "next build && NODE_ENV=production node server.js",
"analyze": "cross-env ANALYZE=1 next build && cat .next/stats.txt"
},
"dependencies": {
"@zeit/next-less": "^0.1.1",
"@zeit/next-sass": "^0.1.1",
"antd": "^3.0.2",
"axios": "^0.17.1",
"babel-plugin-wildcard": "^4.0.0",
"glob": "7.1.1",
"koa": "^2.0.1",
"koa-router": "^7.1.0",
"lodash": "^4.17.5",
"next": "^5.0.0",
"next-redux-wrapper": "^1.3.5",
"nprogress": "^0.2.0",
"path-to-regexp": "^2.1.0",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"autoprefixer": "6.7.6",
"babel-eslint": "^8.2.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-module-resolver": "2.5.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-wrap-in-js": "^1.1.0",
"cross-env": "^5.1.3",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"node-sass": "^4.4.0",
"postcss-easy-import": "2.0.0",
"postcss-loader": "1.3.3",
"raw-loader": "^0.5.1",
"sass-loader": "^4.1.1",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.0",
"webpack-bundle-size-analyzer": "^2.7.0"
}
}