-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 957 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
{
"name": "auth-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/server.ts",
"build": "tsc --project .",
"ts-node": "ts-node",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "tahmid-choyon",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"express": "4.17.1",
"express-async-handler": "^1.1.4",
"http-errors": "^1.8.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.17"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/http-errors": "^1.8.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.168",
"@types/mongodb": "^3.6.8",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.30",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}