-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 767 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
{
"name": "api-boilerplate",
"version": "1.0.0",
"description": "Production-ready REST API boilerplate with Express, Prisma, JWT auth, rate limiting, tests, and Docker.",
"type": "module",
"scripts": {
"dev": "node --watch src/index.js",
"start": "node src/index.js",
"test": "node --test tests/*.test.js",
"db:push": "npx prisma db push",
"db:seed": "node prisma/seed.js",
"db:studio": "npx prisma studio"
},
"dependencies": {
"express": "^4.19.0",
"cors": "^2.8.5",
"morgan": "^1.10.0",
"helmet": "^7.1.0",
"express-rate-limit": "^7.4.0",
"@prisma/client": "^5.16.0",
"jsonwebtoken": "^9.0.0",
"bcryptjs": "^2.4.3",
"zod": "^3.23.0"
},
"devDependencies": {
"prisma": "^5.16.0"
}
}