-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "nice-app-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome check --write ./src",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@nextui-org/react": "^2.4.8",
"@tanstack/react-query": "^5.59.13",
"@tanstack/react-query-devtools": "^5.59.13",
"@tanstack/react-router": "^1.67.0",
"@tanstack/router-devtools": "^1.67.0",
"framer-motion": "^11.11.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@tanstack/router-plugin": "^1.66.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.3",
"vite": "^5.4.8"
},
"lint-staged": {
"*": "biome check --write ./src"
}
}