-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.95 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
{
"name": "adomin",
"version": "0.0.1",
"description": "adomin",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "cross-env PROXY_ENV=dev NODE_ENV=dev webpack-dev-server --config ./scripts/webpack.dev.config.js",
"build": "rimraf dist && webpack --config ./scripts/webpack.prod.config.js",
"ws": "nodemon ./src/websocket/backend/mock.js"
},
"babel": {
"presets": [
"./.babelrc.js"
]
},
"author": "adomin",
"devDependencies": {
"babel-core": "~6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-import": "~1.6.3",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.6.1",
"babel-preset-mobx": "^2.0.0",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"cross-env": "~5.1.4",
"css-loader": "~0.28.9",
"dayjs": "^1.7.7",
"eslint": "~4.15.0",
"eslint-config-standard": "~11.0.0",
"eslint-loader": "~2.1.0",
"eslint-plugin-import": "~2.8.0",
"eslint-plugin-jsx-a11y": "~6.0.3",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "~7.5.1",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "~1.1.6",
"friendly-errors-webpack-plugin": "~1.7.0",
"html-webpack-plugin": "~2.30.1",
"http-proxy": "~1.16.2",
"mobx-react-devtools": "^6.0.3",
"rimraf": "^2.6.2",
"style-loader": "~0.19.1",
"stylus": "~0.54.5",
"stylus-loader": "~3.0.2",
"url-loader": "~0.6.2",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-dev-server": "~2.11.0",
"webpack-merge": "~4.1.1"
},
"dependencies": {
"antd": "~3.8.0",
"axios": "~0.18.0",
"mobx": "^5.5.0",
"mobx-react": "^5.2.8",
"react": "~16.0.0",
"react-dom": "~16.0.0",
"react-router-dom": "~4.3.1",
"webpack": "~3.10.0",
"ws": "^6.0.0"
}
}