-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "personal-finance-tracker-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.ts",
"start": "node dist/app.js",
"build": "tsc",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:seed": "ts-node prisma/seed.ts",
"db:reset": "prisma migrate reset",
"db:studio": "prisma studio",
"db:deploy": "prisma migrate deploy",
"db:setup": "npm run db:generate && npm run db:migrate && npm run db:seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.6.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/node": "^22.15.2",
"@types/node-cron": "^3.0.11",
"nodemon": "^3.1.10",
"prisma": "^6.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}