-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"private": true,
"scripts": {
"watch": "TSLINT=none ESLINT=none BROWSER=none RELEASE_ENV=DEV roadhog dev",
"build": "TSLINT=none ESLINT=none BROWSER=none RELEASE_ENV=RELEASE roadhog build",
"startExample": "export PORT=9100 RELEASE_MODULE=example && npm run watch",
"startApp": "export PORT=9101 RELEASE_MODULE=app && npm run watch",
"startCas": "export PORT=9102 RELEASE_MODULE=cas && npm run watch",
"releaseApp": "export RELEASE_MODULE=app && npm run build",
"releaseCas": "export RELEASE_MODULE=cas && npm run build",
"releaseExample": "export RELEASE_MODULE=example && npm run build",
"release": "rimraf dist/* && rimraf prod_*/** &&yarn run releaseApp && yarn run releaseCas && yarn run releaseExample",
"lint": "eslint --ext .js --fix src test",
"precommit": "npm run lint"
},
"dependencies": {
"blueimp-canvas-to-blob": "^3.14.0",
"braft-editor": "^1.8.9",
"cropperjs": "^1.3.5",
"dva": "^2.2.2",
"dva-loading": "^2.0.0",
"echarts-for-react": "^2.0.8",
"jwt-decode": "^2.2.0",
"left-pad": "^1.3.0",
"qr.js": "^0.0.0",
"query-string": "^6.0.0",
"store": "^2.0.12"
},
"devDependencies": {
"babel-plugin-dva-hmr": "^0.3.2",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-umi": "^0.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"git-rev-sync": "^1.11.1",
"husky": "^0.12.0",
"moment": "^2.22.1",
"redbox-react": "^1.4.3",
"rimraf": "^2.6.2",
"roadhog": "^2.0.0",
"svg-sprite-loader": "^3.7.3",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0"
}
}