-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 888 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
{
"name": "backend_de_entregas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"save-dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jest": "^28.1.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"prisma": "^3.14.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@prisma/client": "^3.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/uuid": "^8.3.4",
"ts-jest": "^28.0.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
}
}