-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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": "video-streaming",
"version": "1.0.0",
"description": "Can be found in README.md.",
"author": "David Schütte",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "npm run build && npm run start:prod",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"@nestjs/common": "^8.0.4",
"@nestjs/core": "^8.0.4",
"@nestjs/mongoose": "^9.0.0",
"@nestjs/platform-fastify": "^8.0.4",
"@nestjs/swagger": "^5.0.8",
"fastify-multipart": "^5.2.1",
"fastify-swagger": "^4.12.6",
"mongoose": "^6.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@nestjs/cli": "^8.1.6",
"@nestjs/schematics": "^8.0.5",
"@types/node": "^16.11.13",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}