-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 984 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 984 Bytes
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
{
"name": "app-v1",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build:server": "tsc -p tsconfig.json",
"build:ui": "npm run build --prefix ui",
"build": "npm run build:server && npm run build:ui",
"dev": "npm run build && nodemon",
"start": "node dist/server.js",
"gcp-build": "npm ci && npm ci --prefix ui && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@ai-sdk/google": "^3.0.10",
"ai": "^6.0.42",
"axios": "^1.13.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"redis": "^5.10.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.1",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}