forked from Urigo/merge-graphql-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "merge-graphql-schemas",
"author": "OK GROW!",
"version": "1.0.0",
"description": "Better organize your GraphQL server.",
"repository": {
"type": "git",
"url": "https://github.com/okgrow/merge-graphql-schemas.git"
},
"license": "MIT",
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "jest",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch",
"start": "babel src -d dist --watch"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "4.x.x",
"babel-jest": "^20.0.3",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-latest-node4": "^1.0.1",
"babel-preset-stage-2": "6.x.x",
"babel-runtime": "6.x.x",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.2.4",
"eslint-plugin-babel": "2.x.x",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"graphql": "^0.10.3",
"jest": "^20.0.4"
},
"dependencies": {
"deepmerge": "^1.3.2"
},
"peerDependencies": {
"graphql": "^0.10.3"
}
}