svr-imp/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2017-02-25 14:13:01 +00:00
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
2017-05-14 20:58:46 +00:00
"license": "MIT",
2017-02-25 14:13:01 +00:00
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/server.js",
"test": "jest"
2017-02-25 14:13:01 +00:00
},
"dependencies": {
2018-01-21 10:27:10 +00:00
"@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"
2017-02-25 14:13:01 +00:00
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/jest": "^21.1.8",
2018-01-21 10:15:31 +00:00
"@types/node": "^9.3.0",
"@types/supertest": "^2.0.4",
"jest": "^21.2.1",
2018-01-21 10:27:10 +00:00
"nodemon": "^1.14.1",
"supertest": "^3.0.0",
2018-02-22 08:37:31 +00:00
"tslint": "5.3.2",
"ts-jest": "^21.2.4",
2018-02-19 17:40:52 +00:00
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
2017-02-25 14:13:01 +00:00
}
}