-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 931 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
{
"name": "agentic-email-client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"baml-generate": "baml-cli generate",
"build:backend": "tsc -p tsconfig.backend.json",
"build:frontend": "tsc -p tsconfig.frontend.json",
"build": "npm run baml-generate && npm run build:backend && npm run build:frontend",
"start:dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"start": "npx ts-node-dev src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.13.14",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.2"
},
"dependencies": {
"@boundaryml/baml": "^0.208.3",
"axios": "^1.8.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"google-auth-library": "^9.15.1",
"googleapis": "^148.0.0"
}
}