-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1015 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
38
39
40
{
"name": "delivery-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "node dist/shared/infra/http/index.js",
"build": "tsc",
"dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/shared/infra/http/index.ts",
"test": "jest --runInBand --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/uuid": "^8.3.4",
"jest": "^28.1.3",
"prisma": "^4.1.1",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@prisma/client": "^4.1.1",
"@types/node": "^18.6.4",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.2"
}
}