Yield generated for a9f0cc47-65f1-440f-accc-3b20ac46c429
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

109 lines
3.0 KiB

{
"name": "nest-onion-boilerplate",
"version": "0.0.1",
"description": "a boilerplate for my projects",
"author": "Nicolas Beaussart <nic.beaussart@gmail.com>",
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --list-different \"src/**/*{.ts,.scss,.html}\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"lint": "tslint -p tsconfig.json -c tslint.json",
"doc:build": "./node_modules/.bin/compodoc -c compodoc.server.json",
"doc": "./node_modules/.bin/compodoc -c compodoc.server.json -s -o -w",
"test": "jest",
"test:ci": "jest --runInBand --coverage",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"generate": "plop --plopfile internals/generator/index.js",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@nestjs/jwt": "^0.2.0",
"@nestjs/passport": "^5.1.0",
"@nestjs/swagger": "^2.5.1",
"@nestjs/typeorm": "^5.2.2",
"argon2": "^0.20.0",
"class-sanitizer": "^0.0.5",
"class-transformer": "^0.3.1",
"class-validator": "^0.9.1",
"dotenv": "^6.1.0",
"joi": "^14.1.0",
"nest-router": "^1.0.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.6.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2",
"typeorm": "^0.2.29",
"typescript": "^3.0.1",
"typescript-optional": "^1.8.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.11",
"@nestjs/testing": "^5.1.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.1",
"@types/joi": "^14.0.0",
"@types/node": "^10.7.1",
"@types/supertest": "^2.0.5",
"husky": "^1.0.0-rc.15",
"jest": "^23.5.0",
"lint-staged": "^8.1.0",
"lodash": "^4.17.20",
"node-plop": "^0.16.0",
"nodemon": "^1.18.3",
"plop": "^2.1.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "5.11.0",
"tslint-config-prettier": "^1.15.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -p tsconfig.json -c tslint.json",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}