This repository has been archived by the owner on Jan 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "graphql-authorize-subscription",
"version": "0.1.2",
"description": "A simple higher order helper function to authorize subscription with apollo-server",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --ignore test/ --exec babel-node"
},
"keywords": [
"graphql-subscription",
"apollo-subscription",
"authorization"
],
"author": "Lee Eungyu <[email protected]> (https://mirage.works)",
"license": "MIT",
"homepage": "https://github.com/ScripterSugar/graphql-authorize-subscription",
"repository": {
"url": "https://github.com/ScripterSugar/graphql-authorize-subscription",
"type": "github"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/ScripterSugar/graphql-authorize-subscription"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-flow": "^7.10.4",
"@types/node": "^14.11.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"typescript": "^3.9.6"
},
"directories": {
"lib": "lib"
}
}