forked from davidschuette/nestjs-file-streaming
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"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": "^7.3.2",
"@nestjs/core": "^7.3.2",
"@nestjs/mongoose": "^7.0.2",
"@nestjs/platform-fastify": "^7.3.2",
"@nestjs/swagger": "^4.5.12",
"fastify-multipart": "~3.3.1",
"fastify-swagger": "~3.5.0",
"mongoose": "^5.9.26",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.0"
},
"devDependencies": {
"@nestjs/cli": "^7.4.1",
"@nestjs/schematics": "^7.0.1",
"@types/fastify-multipart": "^0.7.0",
"@types/node": "~14.14.22",
"prettier": "^2.0.5",
"ts-loader": "^8.0.1",
"ts-node": "~9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"typescript": "~4.1.3"
}
}