generated from itsdevdom/node-typescript-nestjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.29 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.29 KB
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
{
"name": "ncc-nestjs-swagger-setup",
"version": "1.0.0",
"description": "Setup for a NestJS application that uses Swagger, built with ncc",
"license": "MIT",
"scripts": {
"build": "rimraf build && ncc build src/main.ts --out ./build --minify",
"start": "rimraf build && concurrently --names \"BUILD,APP\" \"ncc build src/main.ts --out ./build --watch --quiet\" \"wait-on build/index.js && supervisor --watch build/index.js --quiet build/index.js\"",
"start:build": "node build/index.js",
"test": "jest --config jest.config.json",
"test:watch": "jest --config jest.config.json --watch"
},
"dependencies": {
"@nestjs/common": "7.5.x",
"@nestjs/core": "7.5.x",
"@nestjs/platform-express": "7.5.x",
"@nestjs/swagger": "4.6.x",
"fastify-swagger": "3.5.x",
"reflect-metadata": "0.1.x",
"swagger-ui-express": "4.1.x",
"rxjs": "6.6.x"
},
"devDependencies": {
"@nestjs/testing": "7.5.x",
"@types/express": "4.17.x",
"@types/jest": "26.0.x",
"@types/node": "14.14.x",
"@types/supertest": "2.0.x",
"@vercel/ncc": "0.24.x",
"concurrently": "5.3.x",
"jest": "26.6.x",
"supertest": "6.0.x",
"supervisor": "0.12.x",
"ts-jest": "26.4.x",
"ts-node": "9.0.x",
"typescript": "4.0.x",
"wait-on": "5.2.x"
}
}