-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
84 lines (84 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-ssr",
"version": "1.0.0",
"description": "react ssr",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "rimraf .next && next build",
"export": "rimraf outCDN && next export -o outCDN",
"start": "cross-env NODE_ENV=production node server.js",
"start-test": "cross-env NODE_ENV=production NODE_TEST=test node server.js",
"analyze": "cross-env ANALYZE=1 next build",
"css": "npm run css:build && npm run css:clean",
"css:build": "webpack --config webpack-handle-css.js --progress --color",
"css:clean": "rimraf static/styles/antd_mobile_min.js static/styles/app_min.js",
"css:dev": "webpack --config webpack-handle-css.js --watch --progress --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minooo/react-ssr.git"
},
"keywords": [
"react",
"next",
"redux",
"antd-mobile"
],
"author": "minooo",
"license": "ISC",
"bugs": {
"url": "https://github.com/minooo/react-ssr/issues"
},
"homepage": "https://github.com/minooo/react-ssr#readme",
"dependencies": {
"antd-mobile": "^2.1.2",
"axios": "^0.17.1",
"babel-eslint": "^8.0.3",
"babel-plugin-import": "^1.6.3",
"babel-plugin-module-resolver": "^3.0.0",
"chart.js": "^2.7.1",
"cookie": "^0.3.1",
"date-fns": "^1.29.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"koa": "^2.4.1",
"koa-route": "^3.2.0",
"koa-session": "^5.5.1",
"lodash": "^4.17.4",
"lru-cache": "^4.1.1",
"next": "^4.2.3",
"next-redux-wrapper": "^1.3.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"uuid": "^3.1.0",
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack-bundle-analyzer": "^2.9.1"
}
}