forked from juicycleff/ultimate-backend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·139 lines (139 loc) · 4.58 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "ub-boilerplate",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"docker:build": "sh scripts/docker-build.sh",
"docker:run": "chmod +x ./scripts/pg-init-scripts/create-db.sh && chmod +x ./.deploy/kong/entrypoint.sh && docker compose up",
"deploy:download": "sh scripts/download-deployment-tools.sh",
"deploy:setup": "sh scripts/update-helm.sh",
"deploy:pulumi": "sh scripts/deploy-pulumi.sh",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "tsc tools/executors/protoscrub/impl && pnpm dlx prisma generate --schema=./libs/persistence/schema.prisma",
"posttest": "tsc tools/executors/protoscrub/impl"
},
"private": true,
"dependencies": {
"@apollo/federation": "^0.35.1",
"@apollo/subgraph": "^0.3.1",
"@grpc/grpc-js": "^1.5.7",
"@grpc/proto-loader": "^0.6.9",
"@nestjs/apollo": "^10.0.6",
"@nestjs/bull": "^0.5.2",
"@nestjs/common": "^8.4.0",
"@nestjs/core": "^8.4.0",
"@nestjs/cqrs": "^8.0.3",
"@nestjs/graphql": "^10.0.6",
"@nestjs/microservices": "^8.4.0",
"@nestjs/platform-express": "^8.4.0",
"@nestjs/platform-fastify": "^8.4.0",
"@nestjs/swagger": "^5.2.0",
"@nestjs/throttler": "^2.0.0",
"@ory/hydra-client": "^1.11.7",
"@ory/kratos-client": "^0.8.2-alpha.1",
"@prisma/client": "^3.10.0",
"@ultimate-backend/bootstrap": "^0.13.7",
"@ultimate-backend/cloud": "^0.13.7",
"@ultimate-backend/common": "^0.13.7",
"@ultimate-backend/config": "^0.13.7",
"@ultimate-backend/core": "^0.13.7",
"@ultimate-backend/event-store": "^0.13.7",
"@ultimate-backend/kubernetes": "^0.13.7",
"@ultimate-backend/permissions": "^0.13.7",
"@ultimate-backend/plugin-nx": "^0.13.7",
"@ultimate-backend/redis": "^0.13.7",
"@willsoto/nestjs-prometheus": "^4.5.0",
"apollo-server-cache-redis": "^3.3.1",
"apollo-server-express": "^3.6.3",
"apollo-server-fastify": "^3.6.3",
"axios": "^0.21.4",
"bull": "^4.7.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"connect-redis": "^6.1.1",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"dotenv": "10.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"fastify": "^3.27.2",
"fastify-cookie": "^5.6.0",
"fastify-swagger": "^4.17.1",
"graphql": "^16.3.0",
"graphql-scalars": "^1.15.0",
"graphql-tools": "^8.2.0",
"grpc": "^1.24.11",
"lodash": "^4.17.21",
"long": "^5.2.0",
"nest-commander": "^2.4.0",
"otplib": "^12.0.1",
"pg": "^8.7.3",
"prom-client": "^14.0.1",
"protobufjs": "^6.11.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"swagger-ui-express": "^4.3.0",
"tslib": "^2.3.1",
"uuid": "^8.3.2",
"zxcvbn-typescript": "^5.0.1"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1202.3",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@nrwl/cli": "13.8.4",
"@nrwl/devkit": "13.8.4",
"@nrwl/eslint-plugin-nx": "13.8.4",
"@nrwl/jest": "13.8.4",
"@nrwl/js": "13.8.4",
"@nrwl/linter": "13.8.4",
"@nrwl/nest": "13.8.4",
"@nrwl/node": "13.8.4",
"@nrwl/nx-cloud": "13.1.6",
"@nrwl/tao": "13.8.4",
"@nrwl/workspace": "13.8.4",
"@nx-go/nx-go": "^2.4.0",
"@types/bull": "^3.15.8",
"@types/cookie-session": "^2.0.44",
"@types/inquirer": "^8.2.0",
"@types/jest": "27.0.2",
"@types/node": "^17.0.21",
"@types/pg": "^8.6.5",
"@types/protobufjs": "^6.0.0",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"@ultimate-backend/cli": "^0.13.5",
"eslint": "8.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"install": "^0.13.0",
"jest": "27.2.3",
"migurt": "^3.0.8",
"npm": "^7.13.0",
"prettier": "2.5.1",
"ts-jest": "27.0.5",
"ts-node": "~9.1.1",
"ts-proto": "^1.106.2",
"typescript": "4.3.5"
}
}