-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"name": "driftal-backend",
"version": "1.0.0",
"description": "driftal Cloud Proxy Backend - Authentication and LLM request routing service",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "prisma generate && tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 0",
"test:watch": "echo \"Error: no test specified\" && exit 0",
"lint": "echo \"Linting not configured\"",
"format": "echo \"Formatting not configured\"",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"postinstall": "prisma generate && echo '\n✅ Dependencies installed successfully!\n\nNext steps:\n 1. Copy .env.example to .env\n 2. Fill in your credentials\n 3. Run: npm run dev\n\nSee SETUP_GUIDE.md for detailed instructions.\n'"
},
"keywords": [
"driftal",
"oauth",
"llm",
"proxy",
"anthropic",
"openai",
"supabase"
],
"author": "Scout Team",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.9.1",
"@supabase/supabase-js": "^2.39.0",
"@upstash/redis": "^1.28.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"openai": "^4.73.0",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"prisma": "^5.9.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}