-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 KB
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
{
"name": "code-exam",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"service": "node scripts/server/runner.js",
"start": "cross-env NODE_ENV=development pm2 start process.config.js",
"lint": "eslint ./app ./service --fix",
"bz": "cross-env BUNDLE_ANALYZE=1 NODE_ENV=production webpack --config ./app/exam/webpack.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"antd": "^3.10.3",
"babel-plugin-import": "^1.11.0",
"body-parser": "^1.18.3",
"busboy": "^0.2.14",
"chalk": "^2.4.1",
"codemirror": "^5.41.0",
"commander": "^2.19.0",
"cross-env": "^5.2.0",
"debounce": "^1.2.0",
"downloadjs": "^1.4.7",
"happypack": "^5.0.0",
"html-to-image": "^0.1.0",
"markdown-it": "^8.4.2",
"md5": "^2.2.1",
"mockjs": "^1.0.1-beta3",
"mysql": "^2.16.0",
"nodemailer": "^4.6.8",
"ramda": "^0.25.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redis": "^2.8.0",
"sql-formatter": "^2.3.2",
"stylus": "^0.54.5"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"babel-eslint": "7.2.3",
"babel-loader": "^8.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^1.0.1",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"pm2": "^3.2.2",
"style-loader": "^0.23.1",
"stylus-loader": "^3.0.2",
"webpack": "^4.23.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}