-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "webpack-plugin-graphql-schema-hot",
"version": "0.0.10",
"description": "Webpack plugin which track changes in your schema files and generate `json` and `txt` files.",
"main": "index.js",
"repository": "https://github.com/nodkz/webpack-plugin-graphql-schema-hot",
"author": "Nodkz (pavel.chertorogov@gmail.com)",
"keywords": [
"graphql",
"schema",
"regenerate",
"webpack",
"plugin",
"hot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodkz/webpack-plugin-graphql-schema-hot/issues"
},
"homepage": "https://github.com/nodkz/webpack-plugin-graphql-schema-hot",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"graphql": "^0.13.2",
"prettier": "^1.13.0"
},
"dependencies": {
"decache": "^4.4.0",
"minimatch": "^3.0.4"
},
"peerDependencies": {
"graphql": ">=0.7.0 || >=0.8.0 || >=0.9.0 || >=0.10.0 || >=0.11.0 || >=0.12.0 || >=0.13.0"
},
"scripts": {
"test": "eslint index.js"
}
}