-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 971 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
41
{
"name": "rest-api-jwt-ts-passport",
"version": "1.0.0",
"description": "Software of Development with Typescript",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node dist/index.js\""
},
"keywords": [
"Typescript",
"NodeJS",
"JWT",
"Express",
"MongoDB",
"Passport"
],
"author": "Daniel Alejo Alvarez",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.13",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/passport": "^1.0.5",
"@types/passport-jwt": "^3.0.3",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
}
}