-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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": "react-startup",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "craco start",
"build:beta": "dotenv -e .env.beta craco build",
"build:prod": "dotenv -e .env.prod craco build"
},
"dependencies": {
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@reduxjs/toolkit": "^2.5.0",
"ahooks": "^3.8.4",
"antd": "^5.23.0",
"axios": "^1.7.9",
"bytes": "^3.1.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.9",
"react": "^19.0.0",
"react-contextmenu-lite": "^1.0.13",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"redux-saga": "^1.3.0",
"reselect": "^5.1.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"craco-less": "^3.0.1",
"dotenv-cli": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react-scripts": "5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,less,md}": [
"prettier --write"
]
},
"browserslist": [
"defaults"
]
}