-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "ant-modifier-app",
"version": "1.0.0",
"private": true,
"dependencies": {
"react": "^16.8.6",
"react-dom": "npm:@hot-loader/react-dom",
"react-hot-loader": "^4.12.7",
"react-scripts": "3.0.1",
"typescript": "3.5.3"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@types/node": "12.6.6",
"@types/react": "^16.8.23",
"@types/react-dom": "16.8.4",
"antd": "3.20.3",
"customize-cra": "^0.4.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"react-app-rewired": "^2.1.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "cd src/Modifier;tsc",
"publish": "cd src/Modifier;npm publish"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"./node_modules/.bin/eslint --fix",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}