Files
back-ts/package.json
T
Brandon Taylor 28f8258864 Updated dependencies, added jest, ts-ject, supertest and supporting types.
Added minimum jest configuration to package.json.
Added allowSyntheticDefaultImports to tsconfig.
Added sample e2e test for app controller.
2017-12-17 12:33:45 -05:00

47 lines
1.0 KiB
JSON

{
"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.1",
"@nestjs/core": "^4.5.1",
"@nestjs/microservices": "^4.5.1",
"@nestjs/testing": "^4.5.1",
"@nestjs/websockets": "^4.5.1",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.5",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/jest": "^21.1.8",
"@types/node": "^8.5.1",
"@types/supertest": "^2.0.4",
"jest": "^21.2.1",
"nodemon": "^1.13.3",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-node": "^4.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}
}