-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.4 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": "testbench",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"subscriber": "tsx --env-file=.env.local --tsconfig tsconfig.json scripts/mqtt-subscriber.ts",
"subscriber:prod": "tsx --tsconfig tsconfig.json scripts/mqtt-subscriber.ts",
"stress": "tsx --tsconfig tsconfig.json scripts/stress-test.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@google/genai": "^2.5.0",
"@ibm-cloud/watsonx-ai": "^1.7.12",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.16.0",
"mqtt": "^5.15.1",
"next": "16.2.6",
"next-auth": "^5.0.0-beta.31",
"postgres": "^3.4.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5",
"vitest": "^3.2.4"
}
}