-
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) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "chefu-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx watch --env-file=.env src/main.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"start:prod": "node dist/main.js",
"lint": "eslint \"src/**/*.ts\"",
"smoke": "node scripts/smoke-routes.mjs",
"sync:flow-template": "node scripts/sync-flow-resend-template.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@google/genai": "^1.38.0",
"@nestjs/common": "^11.1.9",
"@nestjs/core": "^11.1.9",
"@nestjs/platform-express": "^11.1.9",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/node": "^20.19.25",
"cookie-parser": "^1.4.7",
"firebase-admin": "^13.6.0",
"node-cron": "^4.2.1",
"puppeteer": "^25.0.4",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"svix": "^1.94.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.1",
"tsx": "^4.21.0"
}
}