-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "hypothesis-arena",
"version": "5.3.0",
"private": true,
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "npm run build:prod",
"build:prod": "prisma generate && tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@libsql/client": "^0.15.15",
"@prisma/adapter-libsql": "6.19.0",
"@prisma/client": "6.19.0",
"axios": "^1.6.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.0",
"express": "^4.18.0",
"express-rate-limit": "^7.1.0",
"helmet": "^7.1.0",
"uuid": "^9.0.0",
"winston": "^3.11.0",
"ws": "^8.18.3",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.0",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"prisma": "6.19.0",
"tsx": "^4.7.0",
"typescript": "^5.8.0"
}
}