-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "@gql-rungate/core",
"version": "0.0.1",
"description": "GraphQL Gateway with runtime schema",
"main": "index.js",
"author": "Konstantin Knyazev <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --runInBand --coverage --passWithNoTests",
"lint": "eslint ./src --fix",
"dev": "ts-node-dev ./src/index.ts",
"compile": "lerna run compile",
"lerna-version": "lerna version --yes --allow-branch master --conventional-commits --force-git-tag -m 'chore(release): [skip ci] %v'",
"lerna-publish": "yarn compile && lerna publish from-git --yes --force-publish=* --no-git-reset"
},
"repository": {
"type": "git",
"url": "https://github.com/sckv/gql-rungate.git"
},
"devDependencies": {
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.4",
"lerna": "^4.0.0",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
},
"dependencies": {
"@graphql-tools/stitch": "^7.5.3",
"@graphql-tools/wrap": "^7.0.8",
"accepts": "^1.3.7",
"barehttp": "^0.2.1",
"content-type": "^1.0.4",
"graphql": "^15.5.0",
"http-errors": "^1.8.0",
"node-fetch": "^2.6.1"
}
}