-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "@convstack/ledger",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "bun run openapi:generate && 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",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"openapi:generate": "bun run scripts/generate-openapi.ts"
},
"dependencies": {
"@convstack/service-sdk": "^0.2.0",
"@tanstack/react-router": "^1.168.2",
"@tanstack/react-start": "^1.167.3",
"clsx": "^2.1.1",
"drizzle-orm": "1.0.0-beta.21",
"lucide-react": "^0.500.0",
"nanoid": "^5.1.5",
"nodemailer": "^8.0.4",
"pg": "^8.16.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"stripe": "^18.1.0",
"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/nodemailer": "^8.0.0",
"@types/pg": "^8.15.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "1.0.0-beta.21",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.1"
}
}