forked from choerodon/iam-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "@choerodon/iam",
"routeName": "iam",
"version": "0.18.3",
"description": "",
"main": "./lib/src/app/iam/containers/IAMIndex.js",
"files": [
"lib"
],
"peerDependencies": {
"@choerodon/boot": "0.18.x",
"@choerodon/master": "0.18.x"
},
"dependencies": {
"echarts": "^4.1.0",
"echarts-for-react": "^2.0.12",
"hjson": "^3.1.1",
"react-codemirror": "^1.0.0",
"react-image-lightbox": "^4.6.0",
"react-quill": "^1.2.6"
},
"devDependencies": {
"@choerodon/boot": "0.18.x",
"@choerodon/master": "0.18.x",
"babel-preset-env": "^1.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"through2": "^2.0.3"
},
"scripts": {
"start": "choerodon-front-boot start --config ./react/config.js",
"dist": "choerodon-front-boot dist --config ./react/config.js",
"lint-staged": "lint-staged",
"lint-staged:es": "eslint",
"compile": "gulp compile"
},
"author": "",
"license": "ISC",
"lint-staged": {
"react/**/*.{js,jsx}": [
"npm run lint-staged:es"
],
"react/**/*.scss": "stylelint --syntax scss"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}