-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "team31-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node --watch --import tsx --env-file=.env --conditions development src/server.ts",
"dev:gc": "node --watch --import tsx --expose-gc --env-file=.env --conditions development src/server.ts",
"dev:inspect": "node --watch --import tsx --inspect --env-file=.env --conditions development src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@genkit-ai/google-genai": "^1.28.0",
"@types/ejs": "^3.1.5",
"compression": "^1.8.1",
"cors": "^2.8.6",
"ejs": "^4.0.1",
"express": "^5.2.1",
"genkit": "^1.28.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.1",
"puppeteer-core": "^24.37.2",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^25.2.1",
"@types/uuid": "^10.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"imports": {
"#global/*": {
"development": "./src/global/*.ts",
"default": "./dist/global/*"
},
"#domain/*": {
"development": "./src/domain/*.ts",
"default": "./dist/domain/*"
}
}
}