-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
106 lines (106 loc) · 2.35 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
{
"name": "postgraphile-plugin-nested-mutations",
"version": "1.2.0",
"description": "Nested mutations plugin for PostGraphile",
"main": "index.js",
"repository": {
"url": "git+https://github.com/mlipscombe/postgraphile-plugin-nested-mutations.git",
"type": "git"
},
"author": "Mark Lipscombe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlipscombe/postgraphile-plugin-nested-mutations/issues"
},
"scripts": {
"test": "scripts/test jest -i",
"lint": "eslint index.js src/**/*.js"
},
"dependencies": {
"graphile-build-pg": "^4.11.2"
},
"peerDependencies": {
"postgraphile-core": "^4.2.0"
},
"devDependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"graphql": "^15.5.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"pg": "^8.5.1",
"postgraphile-core": "^4.11.2",
"prettier": "^2.2.1"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$",
"collectCoverageFrom": [
"src/*.js",
"index.js"
]
},
"files": [
"src"
],
"prettier": {
"trailingComma": "all",
"semi": true,
"singleQuote": true,
"arrowParens": "always"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"jest": true
},
"globals": {
"expect": false,
"jasmine": false
},
"rules": {
"prettier/prettier": "error",
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"prefer-object-spread": 0,
"max-len": 0,
"symbol-description": 0,
"no-nested-ternary": 0,
"no-alert": 0,
"no-console": 0,
"no-plusplus": 0,
"no-restricted-globals": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_fields"
]
}
],
"no-return-assign": [
"error",
"except-parens"
],
"class-methods-use-this": 0,
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
]
}
}
}