forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 834 Bytes
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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "ts-node src/main",
"prestart:prod": "npm run build",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@nestjs/common": "6.6.7",
"@nestjs/core": "6.6.7",
"@nestjs/platform-express": "6.6.7",
"cache-manager-redis-store": "1.5.0",
"class-transformer": "0.2.3",
"class-validator": "0.10.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.3",
"typescript": "3.6.3"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "10.14.18",
"jest": "24.9.0",
"supertest": "4.0.2",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"tslint": "5.20.0"
}
}