-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 833 Bytes
/
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
{
"name": "notes-app-restful-api-express",
"version": "1.0.0",
"description": "Notes App RESTful API Express",
"type": "module",
"main": "index.js",
"scripts": {
"test": "jest -i"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"author": "Christian",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.16.1",
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"joi": "^17.13.3",
"uuid": "^10.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prisma": "^5.16.1",
"supertest": "^7.0.0"
}
}