-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.75 KB
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
85
86
87
88
89
{
"name": "triones-frontend-react-antd",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/charts": "^1.4.2",
"@ant-design/icons": "^5.0.1",
"@craco/craco": "^7.1.0",
"@moensun/antd-icons-react-ext": "latest",
"@moensun/antd-react-ext": "latest",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/typescript-estree": "^5.59.9",
"add": "^2.0.6",
"ahooks": "^3.7.8",
"antd": "5.8.2",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"craco-less": "^2.0.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"typescript": "^5.0.2",
"web-vitals": "^3.3.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@ant-design/cssinjs": "^1.6.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "8.46.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": ">=10",
"prettier": "^2.8.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,less}\"",
"prepare": "husky install",
"check:types": "tsc --project tsconfig.json --noEmit",
"lint": "eslint src --quiet"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx,js,json,css,less}": "prettier --write",
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --quiet"
]
}
}