-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
93 lines (93 loc) · 3.13 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": "react-test-demo",
"version": "1.0.0",
"author": "Xie Kai <[email protected]>",
"scripts": {
"start-dev": "cross-env NODE_ENV=development webpack-dev-server --colors --config ./webpack.dev.config.js",
"start-server": "cross-env NODE_ENV=development node ./bin/www.js",
"test": "jest",
"test-coverage": "jest --coverage"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.4.2",
"antd": "^3.15.2",
"classnames": "^2.2.5",
"cross-env": "^5.0.1",
"debug": "^4.1.1",
"ejs": "^2.6.1",
"es6-promise": "^4.2.6",
"flux-standard-action": "^2.0.4",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.0",
"koa-mount": "^3.0.0",
"koa-router": "^7.4.0",
"koa-session": "^5.10.1",
"koa-static": "^4.0.2",
"koa-views": "^6.1.5",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"querystring": "^0.2.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-redux": "^4.4.6",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.4",
"serve-favicon": "^2.5.0",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/jest": "^23.1.6",
"autoprefixer": "^7.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-import": "^1.11.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-recharts": "^1.2.0",
"concurrently": "^3.5.1",
"css-loader": "^0.28.7",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"nock": "^9.4.2",
"postcss-loader": "^2.0.6",
"redux-mock-store": "^1.5.3",
"regenerator-runtime": "^0.12.0",
"sinon": "^6.1.3",
"style-loader": "^0.13.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}