-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "gatsby-plugin-graphql-preview",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run clean",
"build": "babel src --out-dir .",
"clean": "rimraf lib gatsby-browser.js gatsby-node.js index.js",
"semantic-release": "semantic-release",
"commit": "git cz"
},
"keywords": [
"gatsby",
"gatsby-plugin"
],
"author": "",
"license": "ISC",
"files": [
"lib",
"gatsby-*.js",
"index.js"
],
"dependencies": {
"@babel/runtime": "^7.4.0",
"apollo-boost": "^0.1.28",
"apollo-client": "^2.4.13",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"imurmurhash": "^0.1.4",
"node-fetch": "^2.3.0",
"query-string": "^5.1.1",
"react-apollo-hooks": "^0.4.0",
"react-draggable": "^3.1.1",
"traverse": "^0.6.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"eslint": "5.15.0",
"eslint-plugin-react": "^7.12.4",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3"
},
"peerDependencies": {
"gatsby": ">=2",
"react": ">=16.8"
},
"repository": {
"type": "git",
"url": "https://github.com/djfarly/gatsby-plugin-graphql-preview.git"
},
"browserslist": [
">0.25%",
"not op_mini all"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}