-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "@convstack/schedule",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "bun run server.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run src/db/migrate.ts",
"db:push": "drizzle-kit push",
"db:seed": "bun run src/db/seed.ts",
"db:studio": "drizzle-kit studio",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"dependencies": {
"@convstack/service-sdk": "^0.2.0",
"@tanstack/react-router": "^1.168.2",
"@tanstack/react-start": "^1.167.3",
"drizzle-orm": "1.0.0-beta.20-afec359",
"nanoid": "^5.1.7",
"pg": "^8.20.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@tailwindcss/vite": "^4.2.2",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"@types/pg": "^8.11.10",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "1.0.0-beta.20-afec359",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.1"
}
}