-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "@choerodon/prod-repo",
"routeName": "rdupm",
"version": "1.2.0-alpha.2",
"description": "",
"main": "./lib/index.js",
"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": "choerodon-front-boot compile",
"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"
},
"contributors": [
"choerodon"
],
"license": "ISC",
"files": [
"lib"
],
"resolutions": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"lint-staged": {
"react/**/*.{js,jsx}": [
"npm run lint-staged:es"
],
"react/**/*.scss": "stylelint --syntax scss"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"mobx-react-lite": "^1.4.1",
"moment": "^2.24.0",
"timeago-react": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@choerodon/boot": "1.2.0-alpha.1",
"@choerodon/master": "1.2.0-alpha.9",
"@types/react": "^16.9.44",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-eslint": "^8.1.0",
"babel-preset-c7n": "^0.0.2",
"eslint": "^7.6.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.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"lodash": "latest",
"through2": "^2.0.3",
"webpack-filter-warnings-plugin": "^1.2.1"
}
}