-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "antd_checkout_counter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "emp dev",
"build": "emp build",
"start": "emp serve",
"stat": "emp build --analyze"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"husky": "4.3.8",
"lint-staged": "^10.5.4",
"@efox/emp": "^2.1.1",
"@efox/eslint-config-react": "^2.0.3",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-layout": "^6.34.5",
"antd": "^4.19.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2"
},
"lint-staged": {
"src/**/*.{js,tsx,ts}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": [
"@efox/eslint-config-react"
]
}
}