-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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": "root",
"author": "guojianqiang",
"keywords": [
"react",
"component",
"UI"
],
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"bootstrap": "yarn && lerna bootstrap",
"build": "lerna run build",
"prettier": "prettier --config ./.prettierrc --write packages",
"tslint": "tslint --project ./tsconfig.json --fix",
"publish": "lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,test,webpack}/**/*.{js,ts,tsx,json,css,md}": [
"prettier --config ./.prettierrc --write",
"git add"
],
"packages/**/*.{ts,tsx}": [
"tslint --project ./tsconfig.json --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/guo-jianqiang/rainbow_deer",
"branch": "master"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"dumi": "^1.1.25",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"less": "^4.1.1",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-uglify": "^6.0.4",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^5.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"history": "4.10.0",
"react-router-cache-route": "^1.11.1",
"react-router-dom": "^5.2.1"
}
}