forked from marmelab/aor-simple-graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "aor-graph-cool-client",
"version": "0.1.16",
"description": "A graph.cool client for admin-on-rest",
"main": "lib/index.js",
"repository": "https://github.com/mulyoved/aor-simple-graphql-client.git",
"author": "Gildas Garcia",
"license": "MIT",
"files": [
"*.md",
"lib"
],
"scripts": {
"build": "rm -rf lib && cross-env NODE_ENV=production ./node_modules/.bin/babel --out-dir=lib --stage=0 --ignore=*.spec.js src",
"clean": "make clean",
"prepublish": "rm -rf lib && cross-env NODE_ENV=production ./node_modules/.bin/babel --out-dir=lib --stage=0 --ignore=*.spec.js src",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --opts ./mocha.opts \"./src/**/*.spec.js\"",
"watch-test": "make watch-test"
},
"devDependencies": {
"admin-on-rest": "~0.9.1",
"babel-cli": "~6.23.0",
"babel-core": "~6.23.1",
"babel-plugin-istanbul": "~4.0.0",
"babel-preset-es2015": "~6.22.0",
"babel-preset-stage-0": "~6.22.0",
"eslint": "~3.17.1",
"eslint-config-airbnb-base": "~11.1.0",
"eslint-plugin-import": "~2.2.0",
"expect": "~1.20.2",
"istanbul-cobertura-badger": "~1.3.0",
"mocha": "~3.2.0",
"nyc": "~10.1.2"
},
"dependencies": {
"apollo-client": "~1.0.0-rc.2",
"babel-plugin-transform-runtime": "~6.23.0",
"graphql": "~0.9.1",
"graphql-tag": "~1.3.1",
"lodash.merge": "~4.6.0",
"lodash.omit": "~4.5.0",
"lodash.pick": "~4.4.0",
"lodash.pickby": "~4.6.0",
"pluralize": "~4.0.0",
"react-router": "~2.8.1",
"react-router-redux": "~4.0.8",
"redux-saga": "~0.14.3"
},
"peerDependencies": {
"admin-on-rest": "~0.9.1"
}
}