-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 KB
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
{
"name": "start",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"start": "node .output/server/index.mjs",
"serve": "vite preview",
"test": "vitest run",
"db:migrate": "prisma migrate dev --name init",
"db:reset": " prisma migrate reset",
"db:gen": "prisma generate",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^6.13.0",
"@prisma/extension-accelerate": "^2.0.2",
"@prisma/studio-core": "^0.5.1",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/devtools-event-bus": "workspace:^",
"@tanstack/devtools-event-client": "workspace:^",
"@tanstack/react-devtools": "^0.2.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@tanstack/react-router": "^1.130.2",
"@tanstack/react-router-devtools": "^1.130.2",
"@tanstack/react-router-with-query": "^1.130.2",
"@tanstack/react-start": "^1.130.15",
"@tanstack/router-plugin": "^1.121.2",
"prisma": "^6.13.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.0.6",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.0.14"
},
"devDependencies": {
"@tanstack/devtools": "workspace:^",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.5.2",
"jsdom": "^26.1.0",
"typescript": "5.8.3",
"vite": "^7.0.6",
"vitest": "^3.1.2",
"web-vitals": "^4.2.4"
}
}