-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "gatsby-source-pg",
"version": "1.0.0-rc.0",
"description": "PostgreSQL source for Gatsby, powered by PostGraphile",
"main": "index.js",
"scripts": {
"lint:fix": "yarn prettier --write && yarn eslint --fix",
"prettier": "prettier --ignore-path .eslintignore '**/*.{js,jsx,ts,tsx,graphql,md,yaml,yml}'",
"eslint": "eslint --ext js,jsx,ts,tsx .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/gatsby-source-pg.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"source",
"plugin",
"pg",
"postgres",
"postgresql",
"sql",
"psql",
"pgsql",
"postgraphile",
"graphile",
"postgraphql"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/gatsby-source-pg/issues"
},
"homepage": "https://github.com/graphile/gatsby-source-pg#readme",
"dependencies": {
"apollo-link": "^1.2.3",
"gatsby-source-graphql": "^4.2.0",
"pg": "^8.7.1",
"postgraphile": "^4.12.5"
},
"peerDependencies": {
"graphql": "^0.13.x | ^14.0.0 | ^15.0.0",
"gatsby": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-graphql": "benjie/eslint-plugin-graphql#ignore-fragments-built",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint_d": "^9.1.1",
"prettier": "^2.0.5"
},
"files": [
"/lib",
"/index.js",
"/gatsby-node.js"
]
}