-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
95 lines (95 loc) · 2.81 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
{
"name": "nestjs-mercurius",
"version": "0.21.0",
"main": "index.js",
"repository": "https://@github.com:Davide-Gheri/nestjs-mercurius.git",
"author": "Davide Gheri <[email protected]>",
"license": "MIT",
"scripts": {
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'lib/**/*.ts'",
"build": "rm -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build",
"release": "release-it",
"test": "uvu -r ts-node/register tests/e2e",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@apollo/gateway": "^0.42.3",
"@apollo/subgraph": "^0.1.2",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@graphql-tools/utils": "^7.10.0",
"@nestjs/common": "^8.0.4",
"@nestjs/core": "^8.0.4",
"@nestjs/graphql": "^9.1.1",
"@nestjs/platform-fastify": "^8.0.4",
"@nestjs/testing": "^8.0.4",
"@release-it/conventional-changelog": "^3.0.1",
"@types/graphql-upload": "^8.0.6",
"@types/jest": "^26.0.22",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.33.0",
"altair-fastify-plugin": "^4.1.0",
"apollo-server-core": "^3.0.0",
"class-validator": "^0.13.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"fastify": "^3.22.1",
"graphql": "^15.5.1",
"graphql-scalars": "^1.10.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.0",
"mercurius": "^8.8.0",
"mercurius-integration-testing": "^3.2.0",
"mercurius-upload": "^2.0.0",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"release-it": "^14.10.0",
"rxjs": "^7.2.0",
"supertest": "^6.1.4",
"ts-morph": "^11.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.3.5",
"uvu": "^0.5.1",
"ws": "^8.2.2"
},
"peerDependencies": {
"@apollo/subgraph": "~0.1.2",
"@nestjs/common": "^8.0.4",
"@nestjs/core": "^8.0.4",
"@nestjs/graphql": "~9.1.1 | ^8.0.2",
"altair-fastify-plugin": "^4.1.0",
"apollo-server-core": "^3.0.0",
"graphql": "^15.5.1",
"mercurius": "^8.8.0",
"mercurius-upload": "^2.0.0",
"reflect-metadata": "^0.1.13"
},
"peerDependenciesMeta": {
"@apollo/subgraph": {
"optional": true
},
"altair-fastify-plugin": {
"optional": true
},
"mercurius-upload": {
"optional": true
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}