-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.84 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "iridium",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "bun run typecheck && bun run lint && bun run format:check",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:generate": "bunx --bun prisma generate",
"db:migrate": "bunx --bun prisma migrate dev",
"db:push": "bunx --bun prisma db push",
"db:reset": "bunx --bun prisma migrate reset",
"db:seed": "bunx --bun prisma db seed",
"db:studio": "bunx --bun prisma studio",
"db:fresh": "bun run db:reset -- --force && bun run db:seed",
"docker:up": "docker compose -f docker-compose.dev.yml up -d",
"docker:down": "docker compose -f docker-compose.dev.yml down",
"docker:nuke": "docker compose -f docker-compose.dev.yml down -v"
},
"dependencies": {
"@ai-sdk/react": "^3.0.170",
"@hookform/resolvers": "^5.2.2",
"@json-render/core": "^0.18.0",
"@json-render/react": "^0.18.0",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"@react-router/node": "7.14.2",
"@react-router/serve": "7.14.2",
"@tailwindcss/typography": "^0.5.19",
"@voltagent/core": "^2.7.1",
"@voltagent/postgres": "^2.1.2",
"ai": "^6.0.168",
"better-auth": "^1.6.6",
"cva": "^1.0.0-beta.4",
"dotenv": "^17.4.2",
"isbot": "^5.1.39",
"lucide-react": "^1.8.0",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.73.1",
"react-markdown": "^10.1.0",
"react-router": "7.14.2",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@react-router/dev": "7.14.2",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"daisyui": "^5.5.19",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.7.0",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^7",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5"
}
}