forked from davidschuette/nestjs-file-streaming
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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": "^6.7.2",
"@nestjs/core": "^6.7.2",
"@nestjs/mongoose": "^6.2.1",
"@nestjs/platform-fastify": "^6.10.14",
"@nestjs/swagger": "^4.2.0",
"fastify-multipart": "^1.0.4",
"fastify-swagger": "^2.5.0",
"mongoose": "^5.8.9",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@nestjs/cli": "^6.9.0",
"@nestjs/schematics": "^6.7.0",
"@types/fastify-multipart": "^0.7.0",
"@types/mongoose": "^5.5.43",
"@types/node": "^12.7.5",
"prettier": "^1.18.2",
"ts-loader": "^6.1.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^3.7.5"
}
}