-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
106 lines (106 loc) · 3.02 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
102
103
104
105
106
{
"name": "@choerodon/devops",
"routeName": "devops",
"description": "",
"license": "ISC",
"version": "2.0.10",
"keywords": [],
"contributors": [
"choerodon"
],
"main": "./lib/index.js",
"install": "./lib/install.js",
"files": [
"lib"
],
"scripts": {
"start": "choerodon-front-boot start --config ./react/config.js",
"start:local": "choerodon-front-boot start --config ./config-local.js",
"dist": "choerodon-front-boot dist --config ./react/config.js",
"lint-staged": "lint-staged",
"lint-staged:es": "eslint",
"compile": "choerodon-front-boot compile",
"watch": "compiler compile --watch",
"clean-install": "rm -rf node_modules && rm -fr package-lock.json && npm i --registry https://nexus.choerodon.com.cn/repository/choerodon-npm && chmod -R u+x node_modules",
"commit": "cz"
},
"resolutions": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"peerDependencies": {
"js-yaml": "3.14.1"
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"diff-match-patch": "^1.0.4",
"echarts": "^4.2.1",
"echarts-for-react": "^2.0.12",
"js-base64": "^2.5.2",
"js-file-download": "^0.4.8",
"js-yaml": "^3.12.1",
"json-bigint": "^1.0.0",
"mobx-react-lite": "^1.4.1",
"moment": "^2.22.2",
"pako": "^1.0.11",
"quill-delta-to-html": "^0.8.4",
"rc-table": "^6.8.2",
"react-codemirror": "^1.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^5.0.1",
"react-draggable": "^3.3.2",
"react-image-lightbox": "^4.6.0",
"react-loading": "^1.0.4",
"react-markdown": "^3.5.0",
"simplebar-react": "^1.2.1",
"streamsaver": "^2.0.5",
"styled-components": "^5.2.0",
"timeago-react": "^3.0.0",
"uuid": "^3.3.3",
"web-streams-polyfill": "^3.0.2",
"xterm": "^3.12.0",
"file-saver": "^2.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@choerodon/compiler": "^0.0.2",
"@choerodon/boot": "1.2.0",
"@choerodon/master": "2.0.3",
"@hzero-front-ui/font": "4.0.4",
"@types/json-bigint": "^1.0.1",
"@types/react": "^16.9.44",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "8.2.6",
"babel-preset-c7n": "^0.0.2",
"del": "^4.1.1",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-c7n-app": "^0.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"lodash": "latest",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0"
},
"lint-staged": {
"react/**/*.{js,jsx,ts,tsx}": [
"npm run lint-staged:es"
],
"react/**/*.{scss,less}": "stylelint --syntax less"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}