forked from xavism/nestjs-generic-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 908 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": "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/server.js"
},
"dependencies": {
"@nestjs/common": "^7.6.5",
"@nestjs/core": "^7.6.5",
"@nestjs/microservices": "^7.6.5",
"@nestjs/swagger": "^4.7.11",
"@nestjs/testing": "^7.6.5",
"@nestjs/typeorm": "^7.1.5",
"@nestjs/websockets": "^7.6.5",
"automapper-ts": "^1.9.0",
"body-parser": "^1.19.0",
"class-validator": "^0.13.1",
"mysql": "^2.18.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"typeorm": "^0.2.30",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/node": "^14.14.22",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
}
}