{ "name": "nest-typescript-starter", "version": "1.0.0", "description": "Nest TypeScript starter repository", "license": "MIT", "scripts": { "start": "node index.js", "start:watch": "nodemon", "prestart:prod": "tsc", "start:prod": "node dist/server.js", "test": "jest" }, "dependencies": { "@nestjs/common": "^4.5.9", "@nestjs/core": "^4.5.10", "@nestjs/microservices": "^4.5.8", "@nestjs/testing": "^4.5.5", "@nestjs/websockets": "^4.5.8", "reflect-metadata": "^0.1.12", "rxjs": "^5.5.6", "typescript": "^2.6.2" }, "devDependencies": { "@types/express": "^4.0.39", "@types/jest": "^21.1.8", "@types/node": "^9.3.0", "@types/supertest": "^2.0.4", "jest": "^21.2.1", "nodemon": "^1.14.1", "supertest": "^3.0.0", "tslint": "5.3.2", "ts-jest": "^21.2.4", "ts-node": "^4.1.0", "tsconfig-paths": "^3.1.1" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "testRegex": ".spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" } } }