-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 727 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 727 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
{
"name": "budgetai-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "prisma generate",
"dev": "nodemon src/app.js",
"start": "node src/app.js"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@prisma/client": "^5.22.0",
"cors": "^2.8.6",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"multer": "^2.1.1",
"node-cron": "^4.2.1",
"prisma": "^5.22.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}