-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.1 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
94
95
96
97
98
99
100
101
{
"name": "training-camp",
"version": "0.1.0",
"description": "The training camp is for new colleagues who are about to join",
"scripts": {
"dev": "yarn && concurrently \"yarn dev-server\" \"yarn dev-client\"",
"dev-server": "cross-env WORKERS=1 node index.js",
"dev-client": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack.dev.js",
"build": "webpack --config ./config/webpack.config.js",
"start": "egg-scripts start --daemon --title=egg-server-payment-server --port=8080 --ignore-stderr",
"stop": "egg-scripts stop --title=egg-server-payment-server",
"debug": "egg-bin debug index.js",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"fix": "eslint . --fix",
"ci": "npm run lint && npm run cov",
"fix-memory-limit": "cross-env LIMIT=4052 increase-memory-limit"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@maoyan/tangdao": "^1.1.2",
"antd": "^4.3.0",
"clipboard-polyfill": "^2.8.6",
"cross-env": "^5.2.0",
"egg": "^2.15.1",
"egg-scripts": "^2.11.0",
"history": "^4.10.1",
"immutable": "^4.0.0-rc.12",
"koa-proxy": "^1.0.0-alpha.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.8",
"underscore": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^2.0.1",
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"egg-bin": "^4.11.0",
"egg-ci": "^1.11.0",
"ejs": "^2.6.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-egg": "^7.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"glob": "^7.1.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react-hot-loader": "^4.8.4",
"terser-webpack-plugin": "^3.0.2",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"webstorm-disable-index": "^1.2.0"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"author": "my-bfe",
"license": "MIT"
}