@nest-boot/graphql-connection 6.0.0-beta.1 → 6.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/graphql-connection",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "d4rkcr0w <me@d4rkcr0w.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc -p tsconfig.build.json",
|
|
18
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
19
|
+
"dev": "tsc -w -p tsconfig.build.json",
|
|
20
|
+
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
|
|
21
|
+
"test": "jest"
|
|
22
|
+
},
|
|
16
23
|
"dependencies": {
|
|
17
24
|
"chevrotain": "^10.5.0",
|
|
18
25
|
"inflection": "^3.0.0",
|
|
@@ -20,6 +27,11 @@
|
|
|
20
27
|
},
|
|
21
28
|
"devDependencies": {
|
|
22
29
|
"@mikro-orm/core": "^6.0.5",
|
|
30
|
+
"@nest-boot/common": "6.0.0-beta.2",
|
|
31
|
+
"@nest-boot/database": "6.0.0-beta.3",
|
|
32
|
+
"@nest-boot/eslint-config": "6.0.0-beta.1",
|
|
33
|
+
"@nest-boot/eslint-plugin": "6.0.0-beta.1",
|
|
34
|
+
"@nest-boot/tsconfig": "5.1.0",
|
|
23
35
|
"@nestjs/apollo": "^12.0.9",
|
|
24
36
|
"@nestjs/common": "^10.3.1",
|
|
25
37
|
"@nestjs/core": "^10.3.1",
|
|
@@ -36,15 +48,12 @@
|
|
|
36
48
|
"reflect-metadata": "^0.1.13",
|
|
37
49
|
"rxjs": "^7.8.1",
|
|
38
50
|
"ts-jest": "^29.1.2",
|
|
39
|
-
"typescript": "^5.2.2"
|
|
40
|
-
"@nest-boot/common": "0.0.0-development",
|
|
41
|
-
"@nest-boot/eslint-plugin": "0.0.0-development",
|
|
42
|
-
"@nest-boot/eslint-config": "0.0.0-development",
|
|
43
|
-
"@nest-boot/tsconfig": "0.0.0-development",
|
|
44
|
-
"@nest-boot/database": "0.0.0-development"
|
|
51
|
+
"typescript": "^5.2.2"
|
|
45
52
|
},
|
|
46
53
|
"peerDependencies": {
|
|
47
54
|
"@mikro-orm/core": "^6.0.0",
|
|
55
|
+
"@nest-boot/common": "6.0.0-beta.2",
|
|
56
|
+
"@nest-boot/database": "6.0.0-beta.3",
|
|
48
57
|
"@nestjs/apollo": "^12.0.0",
|
|
49
58
|
"@nestjs/common": "^10.0.0",
|
|
50
59
|
"@nestjs/core": "^10.0.0",
|
|
@@ -53,9 +62,7 @@
|
|
|
53
62
|
"graphql": "^16.0.0",
|
|
54
63
|
"ioredis": "^5.3.2",
|
|
55
64
|
"reflect-metadata": "^0.1.13",
|
|
56
|
-
"rxjs": "^7.0.0"
|
|
57
|
-
"@nest-boot/common": "0.0.0-development",
|
|
58
|
-
"@nest-boot/database": "0.0.0-development"
|
|
65
|
+
"rxjs": "^7.0.0"
|
|
59
66
|
},
|
|
60
67
|
"publishConfig": {
|
|
61
68
|
"access": "public"
|
|
@@ -68,12 +75,5 @@
|
|
|
68
75
|
},
|
|
69
76
|
"volta": {
|
|
70
77
|
"extends": "../../package.json"
|
|
71
|
-
},
|
|
72
|
-
"scripts": {
|
|
73
|
-
"build": "tsc -p tsconfig.build.json",
|
|
74
|
-
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
75
|
-
"dev": "tsc -w -p tsconfig.build.json",
|
|
76
|
-
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
|
|
77
|
-
"test": "jest"
|
|
78
78
|
}
|
|
79
|
-
}
|
|
79
|
+
}
|