-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 KB
/
package.json
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
47
{
"name": "api-commandes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage --verbose",
"dev": "ts-node-dev --pretty --respawn ./src/app.ts",
"prisma:studio": "npx prisma studio",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.15.0",
"@sentry/node": "^8.13.0",
"@sentry/profiling-node": "^8.13.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"kafkajs": "^2.2.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"prisma": "^5.15.0",
"rimraf": "^5.0.7",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}