-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.2 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
{
"name": "packet-proxy",
"version": "0.0.1",
"description": "chrome插件",
"scripts": {
"dev": "ols dev",
"build": "ols build",
"commit": "git-cz",
"lint:script": "eslint --ext .tsx,.ts,.js,.jsx --fix ./src",
"lint:style": "stylelint --fix 'src/**/*.{less,css}' --syntax less"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
"*.{less,css}": [
"yarn lint:style"
],
"*.{tsx,ts,js,jsx}": [
"yarn lint:script"
]
},
"sideEffects": [
"dist/*",
"*.less",
"*.css"
],
"author": "wisestcoder",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@formily/antd": "^1.3.8",
"antd": "^4.0.2",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"cross-env": "^7.0.2",
"lodash": "^4.17.20",
"query-string": "^6.13.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@ols-scripts/cli": "^0.0.2",
"@types/node": "^13.7.4",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.9",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "~2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.1",
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-order": "^4.0.0",
"typescript": "^3.8.2"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 11"
]
}