mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "nest-typescript-starter",
|
|
"version": "1.0.0",
|
|
"description": "Nest TypeScript starter repository",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "rimraf dist && tsc -p tsconfig.build.json",
|
|
"start": "ts-node -r tsconfig-paths/register src/main.ts",
|
|
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess \"node dist/main.js\"",
|
|
"start:debug": "tsc-watch -p tsconfig.build.json --onSuccess \"node --inspect-brk dist/main.js\"",
|
|
"prestart:prod": "npm run build",
|
|
"start:prod": "node dist/main.js",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "6.6.7",
|
|
"@nestjs/core": "6.6.7",
|
|
"@nestjs/platform-express": "6.6.7",
|
|
"cache-manager-redis-store": "1.5.0",
|
|
"class-transformer": "0.2.3",
|
|
"class-validator": "0.10.0",
|
|
"reflect-metadata": "0.1.13",
|
|
"rxjs": "6.5.3",
|
|
"typescript": "3.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "24.0.18",
|
|
"@types/node": "10.14.18",
|
|
"jest": "24.9.0",
|
|
"supertest": "4.0.2",
|
|
"ts-jest": "24.1.0",
|
|
"ts-node": "8.4.1",
|
|
"tslint": "5.20.0",
|
|
"rimraf": "^2.6.2",
|
|
"tsc-watch": "2.2.1",
|
|
"tsconfig-paths": "3.8.0"
|
|
}
|
|
}
|