-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.35 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
85
86
87
88
89
90
91
92
93
{
"name": "koa-react-ssr",
"version": "1.0.0",
"description": "koa-react-ssr",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development babel-node ./server/index.js",
"start_prod": "cross-env NODE_ENV=production babel-node ./server/index.js",
"build:client": "babel-node ./webpack/client/build.js",
"build:server": "babel-node ./webpack/server/build.js",
"build_prod": "cross-env NODE_ENV=production RELEASE=production npm-run-all -p -l build:*",
"prod": "cross-env NODE_ENV=production RELEASE=production babel-node ./server/index.js",
"analyze:client": "cross-env NODE_ENV=production RELEASE=production babel-node ./webpack/client/build.js --analyze"
},
"author": "zengyang",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.6.3",
"@babel/node": "^7.5.0",
"@babel/register": "^7.4.4",
"@loadable/component": "^5.10.2",
"@loadable/server": "^5.10.2",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-import": "^1.12.0",
"babel-plugin-styled-components": "^1.10.6",
"core-js": "3",
"cross-env": "^5.2.0",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-favicon": "^2.0.1",
"koa-router": "^7.4.0",
"koa-static-cache": "^5.1.2",
"lodash": "^4.17.15",
"mobx": "^5.13.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^6.1.3",
"npm-run-all": "^4.1.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-config": "^5.0.1",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.0.0",
"@loadable/babel-plugin": "^5.10.3",
"@loadable/webpack-plugin": "^5.7.1",
"antd": "^3.20.7",
"babel-eslint": "^10.0.2",
"babel-plugin-add-module-exports": "^1.0.2",
"clean-webpack-plugin": "^3.0.0",
"command-line-args": "^5.1.1",
"css-loader": "^3.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^2.0.1",
"isomorphic-style-loader": "^5.1.0",
"koa-webpack-dev-middleware": "^2.0.2",
"koa-webpack-hot-middleware": "^1.0.3",
"memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "1.18.2",
"react-loadable": "^5.5.0",
"stats-webpack-plugin": "^0.7.0",
"style-loader": "^0.23.1",
"styled-components": "^5.0.0-beta.9",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2",
"write-file-webpack-plugin": "^4.5.1"
}
}