-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 3.35 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-template-next",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"mock": "json-server -c .mock/config.json .mock/data.json",
"lint": "eslint --fix src",
"test": "vitest --ui",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"build": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"check-circular": "npx madge --circular src",
"output-dependencies": "npx madge --image dependencies.svg src",
"remove-node_modules": "npx rimraf node_modules",
"upgrade-node_modules": "npx npm-check-updates -u",
"prebuild": "npm run check-circular && npm run lint",
"prepare": "husky install"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix src"
],
"**/*.{js,jsx,tsx,ts,css,less,scss,sass,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@hookform/resolvers": "3.9.0",
"@mui/icons-material": "6.1.4",
"@mui/material": "6.1.4",
"@supercharge/promise-pool": "3.2.0",
"@tanstack/react-query": "5.59.15",
"ahooks": "3.8.1",
"await-to-js": "3.0.0",
"axios": "1.7.7",
"clipboard": "2.0.11",
"dayjs": "1.11.13",
"es-toolkit": "1.25.2",
"immer": "10.1.1",
"qs": "6.13.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "4.1.1",
"react-hook-form": "7.53.0",
"react-router": "6.27.0",
"react-router-dom": "6.27.0",
"zod": "3.23.8",
"zustand": "5.0.0"
},
"devDependencies": {
"@eslint/js": "9.12.0",
"@storybook/addon-essentials": "8.3.5",
"@storybook/addon-interactions": "8.3.5",
"@storybook/addon-links": "8.3.5",
"@storybook/addon-onboarding": "8.3.5",
"@storybook/addon-styling": "1.3.7",
"@storybook/blocks": "8.3.5",
"@storybook/react": "8.3.5",
"@storybook/react-vite": "8.3.5",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.6.1",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@total-typescript/ts-reset": "0.6.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "22.7.6",
"@types/qs": "6.9.16",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react-swc": "3.7.1",
"@vitest/coverage-v8": "2.1.3",
"@vitest/ui": "2.1.3",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "0.4.12",
"globals": "15.11.0",
"happy-dom": "15.7.4",
"husky": "9.1.6",
"identity-obj-proxy": "3.0.0",
"json-server": "0.17.4",
"lint-staged": "15.2.10",
"madge": "8.0.0",
"npm-check-updates": "17.1.3",
"picocolors": "1.1.1",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "5.12.0",
"storybook": "8.3.5",
"typescript": "5.5.4",
"typescript-eslint": "8.9.0",
"typescript-plugin-css-modules": "5.1.0",
"vite": "5.4.9",
"vite-plugin-node-polyfills": "0.22.0",
"vite-plugin-progress": "0.0.7",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.3"
}
}