-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "an-orgtree-react-antd-simple",
"version": "1.0.5",
"description": "",
"main": "dist/lib/orgTree.js",
"scripts": {
"start": " umi dev",
"build": "rollup -c",
"test": "umi test",
"lint": "eslint {src,mock,tests}/**/*.{js,jsx} --fix",
"precommit": "lint-staged"
},
"dependencies": {
"d3": "^6.3.1",
"lodash": "^4.17.20",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@emotion/babel-preset-css-prop": "^11.0.0",
"babel-eslint": "^9.0.0",
"css-loader": "^5.0.1",
"cssnano": "^5.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-react": "^7.21.5",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lint-staged": "^7.2.2",
"postcss-nested": "^5.0.5",
"react-test-renderer": "^16.7.0",
"rollup": "^2.36.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-img": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"style-loader": "^2.0.0",
"umi": "^2.7.7",
"umi-plugin-react": "^1.8.4"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
},
"eslintConfig": {
"rules": {
"no-undef": "off",
"no-restricted-globals": "off",
"no-unused-vars": "off"
}
}
}