-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 905 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": "jwt-authentication-typescript",
"version": "1.0.0",
"description": "jwt authentication using typescript",
"main": "dist/app.js",
"author": "Chayan Simon Saikia",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsc"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.3.7",
"express": "^4.17.2",
"http-errors": "^2.0.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.0",
"morgan": "^1.10.0",
"redis": "^4.0.3",
"winston": "^3.5.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "^0.0.41",
"@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.15",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}