This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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": "rhythmate-web",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "biome lint --apply ./src",
"format": "biome format --write ./src",
"preview": "vite preview",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@tanstack/react-query": "^5.36.0",
"@tanstack/react-router": "^1.50.0",
"chart.js": "^4.4.2",
"dayjs": "^1.11.11",
"firebase": "^10.11.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"react-hot-toast": "^2.4.1",
"react-image-crop": "^11.0.5",
"react-use": "^17.5.0",
"type-fest": "^4.18.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@tanstack/router-devtools": "^1.50.0",
"@tanstack/router-vite-plugin": "^1.31.18",
"@types/lodash": "^4.17.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.19",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"vite": "^5.4.8"
},
"lint-staged": {
"*.{ts,tsx}": "biome format --write ./src"
}
}