forked from Sairyss/domain-driven-hexagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"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"
}
}
}