-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "nirvana",
"private": true,
"version": "1.2.0",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint --fix --ext .js,.ts,.tsx ./src --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"lint:css": "stylelint '**/*.scss'"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": "stylelint --fix"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@reduxjs/toolkit": "^2.0.1",
"antd": "^5.12.2",
"axios": "^1.6.2",
"nprogress": "^0.2.0",
"pinyin-pro": "^3.18.5",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router-dom": "^6.19.0",
"redux": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"faker": "^6.6.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^35.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-mock": "^3.0.0"
}
}