Files
domain-driven-hexagon/package.json

98 lines
3.4 KiB
JSON

{
"name": "domain-driven-hexagon",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --config .jestrc.json",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest -i --forceExit --config jest-e2e.json",
"test:all": "npm run test && npm run test:e2e",
"typeorm": "ts-node -r tsconfig-paths/register --project ./tsconfig.json ./node_modules/.bin/typeorm",
"docker:env": "docker-compose --file docker/docker-compose.yml up --build",
"migration:generate": "npm run typeorm -- migration:generate --config src/infrastructure/configs/database.config",
"migration:run": "npm run typeorm -- migration:run --config src/infrastructure/configs/database.config",
"migration:revert": "npm run typeorm -- migration:revert --config src/infrastructure/configs/database.config",
"seed:run": "ts-node -r tsconfig-paths/register --project ./tsconfig.json ./node_modules/typeorm-seeding/dist/cli.js seed --root src/infrastructure/configs"
},
"dependencies": {
"@apollo/gateway": "^0.41.0",
"@badrap/result": "^0.2.8",
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/cqrs": "^8.0.0",
"@nestjs/graphql": "^9.0.4",
"@nestjs/microservices": "^7.6.12",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/swagger": "^4.7.5",
"@nestjs/typeorm": "^7.1.5",
"apollo-server-express": "^3.3.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"graphql": "^15.6.0",
"i": "^0.3.7",
"nanoid": "^3.1.25",
"nest-event": "^1.0.8",
"nestjs-console": "^7.0.0",
"npm": "^7.24.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"swagger-ui-express": "^4.1.5",
"ts-morph": "^12.0.0",
"typeorm": "^0.2.29",
"typeorm-seeding": "^1.6.1",
"uuid": "^8.3.1",
"validator": "^13.1.17",
"ws": "^8.2.2"
},
"devDependencies": {
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@types/express": "^4.17.3",
"@types/faker": "^5.1.6",
"@types/jest": "26.0.10",
"@types/joi": "^14.3.4",
"@types/node": "^13.9.1",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"eslint": "7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"faker": "^5.3.1",
"jest": "26.4.2",
"jest-cucumber": "^3.0.1",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "26.2.0",
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-push": "npm run test:all && npm run lint && npm run format"
}
}
}