-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.64 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
{
"$schema": "https://json.schemastore.org/package",
"name": "nx",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx run api:serve",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"container": "nx run-many -t container",
"prisma:generate": "nx run-many -t prisma:generate",
"lint": "npm run nx -- run-many --t lint",
"lint:fix": "nx run-many --t lint --fix && npm run tsc:lint && nx format:write --all ",
"tsc:lint": "tsc --noEmit -p tsconfig.base.json",
"prepare": "husky install",
"postinstall": "npm run prisma:generate"
},
"private": true,
"dependencies": {
"@apollo/gateway": "^2.5.6",
"@apollo/server": "^4.9.5",
"@apollo/subgraph": "^2.5.6",
"@nestjs/apollo": "^12.0.9",
"@nestjs/common": "10.2.7",
"@nestjs/core": "10.2.7",
"@nestjs/graphql": "^12.0.9",
"@nestjs/platform-express": "10.2.7",
"@nestjs/testing": "10.2.7",
"@prisma/client": "^5.5.2",
"@tinybudgie/nats": "^0.1.1",
"@tinybudgie/health-checks": "^0.1.0",
"@tinybudgie/logger": "^0.1.0",
"axios": "^1.6.0",
"env-var": "^7.4.1",
"graphql": "^16.8.1",
"nats": "^2.17.0",
"nestjs-spelunker": "^1.3.0",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"testcontainers": "^10.2.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@eslint/eslintrc": "^2.1.1",
"@jscutlery/semver": "^4.0.0",
"@nestjs/schematics": "^10.0.2",
"@nx/devkit": "17.0.1",
"@nx/eslint-plugin": "17.0.1",
"@nx/jest": "17.0.1",
"@nx/js": "17.0.1",
"@nx/nest": "17.0.1",
"@nx/node": "17.0.1",
"@nx/plugin": "17.0.1",
"@nx/webpack": "17.0.1",
"@nx/workspace": "17.0.1",
"@swc-node/register": "1.6.8",
"@swc/core": "1.3.95",
"@tinybudgie/schematics": "^0.1.1",
"@types/jest": "29.5.6",
"@types/node": "20.8.9",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.46.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.0.2",
"nx": "17.0.1",
"prettier": "^2.8.8",
"prisma": "^5.5.2",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"verdaccio": "^5.26.2",
"@nx/eslint": "17.0.1"
},
"lint-staged": {
"*.{js,ts}": "npm run lint:fix"
},
"nx": {
"includedScripts": []
}
}