-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@nestjs/common": "^5.4.0",
"@nestjs/core": "^5.4.0",
"@nestjs/jwt": "^0.2.0",
"@nestjs/mongoose": "^5.2.2",
"@nestjs/testing": "^5.4.0",
"@nestjs/websockets": "^5.4.0",
"compression": "^1.7.3",
"csurf": "^1.9.0",
"express-rate-limit": "^3.2.1",
"helmet": "^3.14.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.6",
"passport-jwt": "^4.0.0",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/helmet": "0.0.42",
"@types/mongoose": "^5.2.20",
"@types/node": "^8.0.28",
"@types/ws": "^6.0.1",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1"
}
}