-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 827 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 827 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
29
30
31
32
33
34
35
36
37
{
"name": "nodejs_restfulapi",
"version": "1.0.0",
"description": "Belajar Node.js RESTFul API",
"license": "ISC",
"author": "Muhammad Dendi Ardana",
"type": "module",
"main": "src/main.js",
"scripts": {
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"dependencies": {
"@prisma/client": "^5.22.0",
"bcrypt": "^6.0.0",
"express": "^5.1.0",
"joi": "^17.13.3",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prisma": "^5.22.0",
"supertest": "^7.1.3"
}
}