-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
{
"name": "graphql-router-ware",
"version": "0.2.0",
"description": "GraphQL resolver for using router level middlewares at ease.",
"author": "Subham Kumar <shukhu10@gmail.com>",
"main": "src/index.js",
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"scripts": {
"start": "node ./src/index.js",
"format": "eslint . --fix",
"prepare": "husky install"
},
"keywords": [
"graphql",
"express",
"router",
"middleware",
"apollo",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Shubham-Kumar-2000/graphql-router-ware.git"
},
"bugs": {
"url": "https://github.com/Shubham-Kumar-2000/graphql-router-ware/issues"
},
"homepage": "https://github.com/Shubham-Kumar-2000/graphql-router-ware#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-regenerator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"husky": "^6.0.0"
}
}