-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1020 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
39
{
"name": "rocketlog",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsx watch --env-file .env src/server.ts",
"prod": "node build/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --watch --runInBand",
"build":"tsup src --out-dir build"
},
"keywords": [],
"author": "Matheus Mendes",
"license": "ISC",
"description": "API de entregas de encomendasa",
"dependencies": {
"@prisma/client": "5.21.1",
"@types/jsonwebtoken": "9.0.7",
"bcrypt": "5.1.1",
"express": "4.21.1",
"express-async-errors": "3.1.1",
"jsonwebtoken": "9.0.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.8.4",
"@types/supertest": "6.0.2",
"jest": "29.7.0",
"prisma": "5.21.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.6.3"
}
}