-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 920 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 920 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
33
34
35
36
{
"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.1.0",
"@nestjs/core": "^5.1.0",
"@nestjs/microservices": "^4.5.8",
"@nestjs/testing": "^4.5.5",
"@nestjs/typeorm": "^5.1.0",
"@nestjs/websockets": "^4.5.8",
"dotenv": "^5.0.1",
"mysql": "^2.16.0",
"mysql2": "^1.5.2",
"redis": "^2.7.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2",
"typeorm": "^0.2.7",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/dotenv": "^4.0.2",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^9.3.0",
"nodemon": "^1.14.1",
"ts-node": "^4.1.0",
"tslint": "5.3.2"
}
}