-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 868 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
{
"name": "auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "set NODE_ENV=PROD&&node dist/index.js",
"dev": "set NODE_ENV=DEV&&nodemon src/index.ts",
"build": "tsc -p ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.31",
"@types/redis": "^4.0.11",
"nodemon": "^2.0.16",
"prisma": "^3.13.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"bcrypt": "^5.0.1",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"redis": "^4.1.0"
}
}