-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "incidents-api",
"version": "1.0.0",
"description": "This is a REST API to manage technical incidents",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsx ./src/app.ts",
"dev": "nodemon --exec \"tsx ./src/app.ts\" --delay 1 --signal SIGTERM --exitcrash",
"db:dev": "npx prisma generate && npx prisma migrate dev && tsx prisma/seed.ts",
"build": "tsc",
"prisma-seed": "tsx prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.5.0",
"bcryptjs": "^3.0.2",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@faker-js/faker": "^9.3.0",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.10.1",
"nodemon": "^3.1.7",
"prisma": "^6.5.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}