-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.24 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
{
"name": "express-graphql-persisted-queries",
"version": "0.1.2",
"description": "A Middleware for Persisted Queries with express-graphql",
"author": "Yaroslav Kukytsyak",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"<3.8": {
"dist/*": [
"dist/ts3.4/*"
]
}
},
"homepage": "https://github.com/kyarik/express-graphql-persisted-queries#readme",
"bugs": {
"url": "https://github.com/kyarik/express-graphql-persisted-queries/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyarik/express-graphql-persisted-queries.git"
},
"keywords": [
"graphql",
"express-graphql",
"persisted-queries",
"express",
"restify",
"connect"
],
"engines": {
"node": ">=10"
},
"sideEffects": false,
"scripts": {
"build:downlevel-dts": "downlevel-dts dist dist/ts3.4",
"build:tsc": "tsc --project ./tsconfig.build.json",
"build": "rimraf dist && npm run build:tsc && npm run build:downlevel-dts",
"checks": "npm run typecheck && npm run lint && npm run test:coverage && npm run prettier:check && npm run test:integration",
"lint": "eslint .",
"prepare": "husky install && npm run build",
"prepublishOnly": ". ./checkBranch.sh && npm run checks",
"pretest:integration": "npm run build",
"prettier:check": "prettier --check .",
"prettier": "prettier --write --list-different .",
"preversion": ". ./checkBranch.sh && npm ci",
"release:github": ". ./checkBranch.sh && conventional-github-releaser -p angular",
"release": ". ./checkBranch.sh && standard-version",
"start": "jest --watch src",
"test:coverage": "jest --coverage src",
"test:integration": "jest integration-tests/index.test.ts",
"test": "jest src",
"typecheck": "tsc --noEmit",
"version": "npm test"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run prettier -- --write CHANGELOG.md"
}
},
"dependencies": {
"@types/content-type": "1.1.3",
"@types/http-errors": "1.8.0",
"content-type": "1.0.4",
"get-stream": "6.0.1",
"http-errors": "1.8.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/body-parser": "1.19.0",
"@types/express": "4.17.12",
"@types/jest": "26.0.23",
"@types/multer": "1.4.6",
"@types/node": "15.6.1",
"@types/restify": "8.5.1",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"body-parser": "1.19.0",
"connect": "3.7.0",
"conventional-github-releaser": "3.1.5",
"downlevel-dts": "0.7.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-node": "11.1.0",
"express": "4.17.1",
"express-graphql": "0.12.0",
"graphql": "15.5.1",
"husky": "6.0.0",
"jest": "27.0.5",
"multer": "1.4.2",
"prettier": "2.3.2",
"restify": "8.5.1",
"rimraf": "3.0.2",
"standard-version": "9.3.0",
"supertest": "6.1.3",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"typescript": "4.3.4"
},
"peerDependencies": {
"@types/node": "*",
"graphql": "^14.7.0 || ^15.3.0"
}
}