-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
89 lines (89 loc) · 2.53 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
{
"name": "react-template-for-starter",
"author": "NuiCoder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"preinstall": "npx only-allow pnpm",
"build": "tsc && vite build",
"lint": "eslint . --ext js,ts,tsx",
"format": "prettier --write **/*.{js,ts,tsx} && eslint . --ext js,ts,tsx --fix",
"preview": "vite preview",
"postinstall": "bash postinstall.sh",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commint": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"eslint --ext ./src --fix"
],
"./src/**": [
"prettier --write ."
]
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.1",
"@lukemorales/query-key-factory": "^1.3.2",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.17",
"@tanstack/react-query": "^4.35.3",
"@types/styled-components": "^5.1.27",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.279.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-hook-form": "^7.47.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"react-router-dom": "^6.16.0",
"styled-components": "^6.0.8",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@optimize-lodash/rollup-plugin": "^4.0.4",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.15",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^6.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}