-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 936 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 936 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"start:dev": "concurrently --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.json\" "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs.pro/common": "^1.0.61",
"@nestjs/common": "^7.6.14",
"@nestjs/core": "^7.6.14",
"@nestjs/swagger": "^4.7.16",
"@nestjs/typeorm": "^7.1.5",
"@types/node": "^14.14.35",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"concurrently": "^6.0.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.7",
"typeorm": "^0.2.31",
"wait-on": "^5.2.1"
},
"devDependencies": {
"typescript": "^4.2.3"
}
}