-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.19 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
{
"name": "@taller/hasura-allowed-queries",
"version": "0.1.5",
"description": "Populate the Hasura allow-list from found GraphQL operations in a path",
"main": "dist/index.js",
"bin": {
"hasura-allowed-queries": "dist/start.js"
},
"scripts": {
"preglobal:add": "npm run build",
"build": "tsc -p .",
"dev": "ts-node-dev --no-notify --transpileOnly src/start.ts",
"lint": "eslint 'src/**/*.ts'",
"prepare": "npm run build",
"postpack": "shx rm -rf dist",
"test": "jest ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TallerWebSolutions/hasura-allowed-queries.git"
},
"keywords": [
"Hasura",
"GraphQL"
],
"maintainers": [
"Taller team <[email protected]>",
"Rhys Bartels-Waller <[email protected]>"
],
"engines": {
"node": "^10 || ^12"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/TallerWebSolutions/hasura-allowed-queries/issues"
},
"homepage": "https://github.com/TallerWebSolutions/hasura-allowed-queries#README.md",
"dependencies": {
"@graphql-toolkit/core": "^0.10.6",
"@graphql-toolkit/graphql-file-loader": "^0.10.6",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"diff": "^5.0.0",
"graphql": "^14.0.0"
},
"devDependencies": {
"@types/diff": "^5.0.0",
"@types/jest": "^25.2.1",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"delay": "^4.3.0",
"docker-compose": "^0.23.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-watch": "^6.0.1",
"jest": "^26.0.0",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"ts-jest": "^25.5.0",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "3.5.3"
},
"files": [
"dist/*",
"!dist/__test__",
"!dist/**/*.test.*",
"LICENSE",
"NOTICE",
"README.md"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
}
}