-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "api-rest-node",
"version": "1.0.0",
"description": "API REST profissional com Node.js, Express, PostgreSQL e Prisma",
"main": "dist/server.js",
"scripts": {
"build": "tsc && node -e \"require('fs').mkdirSync('dist/config',{recursive:true}); require('fs').copyFileSync('src/config/swagger.json','dist/config/swagger.json')\"",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"keywords": ["api", "rest", "node", "express", "prisma", "postgresql"],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.22.0",
"bcryptjs": "^2.4.3",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.0",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"prisma": "^5.22.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
}
}