-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"name": "heimdall",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"dev": "npx concurrently --kill-others \"tsc -w\" \"nodemon dist/app.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"connect-redis": "^4.0.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.0",
"express-validator": "^6.4.0",
"helmet": "^3.21.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.4",
"passport": "^0.4.1",
"passport-custom": "^1.1.1",
"passport-http-bearer": "^1.0.1",
"redis": "^3.0.2",
"uuid": "^7.0.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/connect-redis": "0.0.13",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/express-session": "^1.17.0",
"@types/express-validator": "^3.0.0",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.6",
"@types/passport": "^1.0.3",
"@types/passport-http-bearer": "^1.0.34",
"@types/redis": "^2.8.16",
"@types/uuid": "^7.0.0",
"concurrently": "^5.1.0",
"nodemon": "^2.0.4",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}