-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "tanstack-start-example-basic-react-query",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "yarn run db:up && vinxi dev",
"dev:zero": "npx zero-cache-dev -p zero/schema.ts",
"zero:build": "npx zero-build-schema -p zero/schema.ts",
"build": "vinxi build",
"start": "vinxi start",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down",
"prisma_generate": "npx prisma generate && yarn run zero:build && node scripts/updatePermissions.mjs"
},
"dependencies": {
"@passionfroot/prisma-generator-zero": "^0.0.5",
"@prisma/client": "^6.2.1",
"@rocicorp/zero": "^0.10.2024122404",
"@tanstack/react-query": "^5.62.3",
"@tanstack/react-query-devtools": "^5.62.3",
"@tanstack/react-router": "^1.95.6",
"@tanstack/react-router-with-query": "^1.95.6",
"@tanstack/router-devtools": "^1.95.6",
"@tanstack/start": "^1.95.6",
"dotenv": "^16.4.7",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redaxios": "^0.5.1",
"tailwind-merge": "^2.5.5",
"vinxi": "0.5.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/pg": "^8.11.10",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4"
}
}