-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 876 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 876 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
38
{
"name": "belajar-nodejs-restful-api",
"version": "1.0.0",
"description": "Belajar NodeJS Restful API",
"main": "src/main.js",
"scripts": {
"test": "jest -i",
"test:coverage": "jest -i --coverage"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"author": "Thoriq Dharmawan",
"license": "ISC",
"type": "module",
"dependencies": {
"@prisma/client": "^5.8.1",
"bcrypt": "^5.1.1",
"express": "^4.18.2",
"joi": "^17.12.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prisma": "^5.8.1",
"supertest": "^6.3.4"
}
}