-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 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
110
111
112
113
114
{
"name": "vite-react-ts-zustand-tw",
"private": true,
"version": "0.0.1",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "vite",
"start:local": "env-cmd -f .env.local -x vite",
"build": "tsc && vite build",
"build:local": "env-cmd -f .env.local -x tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"clean": "rimraf .cache build coverage dev-dist"
},
"dependencies": {
"@headlessui/react": "1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "3.3.4",
"@nextui-org/react": "2.2.9",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"framer-motion": "10.17.9",
"history": "^4.10.1",
"lodash": "^4.17.21",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "4.0.12",
"react-helmet": "^6.1.0",
"react-hook-form": "7.49.2",
"react-is-visible": "^1.2.0",
"react-router-dom": "^5.3.3",
"react-use": "^17.4.0",
"react-vh": "^1.1.1",
"tailwind-merge": "^2.1.0",
"tailwind-scrollbar-hide": "^1.1.7",
"zod": "3.22.4",
"zustand": "4.4.7"
},
"devDependencies": {
"@faker-js/faker": "8.3.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/eslint": "^8.56.1",
"@types/history": "4.7.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/qs": "^6.9.10",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"concurrently": "8.2.2",
"env-cmd": "^10.1.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.1",
"miragejs": "0.1.48",
"postcss": "^8.4.32",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "15.1.0",
"postcss-nested": "6.0.1",
"postcss-normalize": "10.0.1",
"rimraf": "^5.0.5",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"tailwindcss": "3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html-env": "^1.2.8",
"vite-plugin-pwa": "0.17.4",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.3"
},
"husky": {
"hooks": {
"pre-push": "npm run test",
"pre-commit": "npm run lint"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}