This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 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
{
"name": "aor-simple-graphql-client",
"version": "0.0.11",
"description": "A simple GraphQL client for admin-on-rest",
"main": "./lib/index.js",
"repository": "https://github.com/marmelab/aor-simple-graphql-client.git",
"authors": [
"Gildas Garcia"
],
"license": "MIT",
"scripts": {
"build": "make build",
"clean": "make clean",
"format": "make format",
"precommit": "lint-staged",
"prepublish": "make build",
"test": "make test",
"watch-test": "make watch-test"
},
"lint-staged": {
"*.js": [
"eslint --fix ./src",
"git add"
]
},
"devDependencies": {
"admin-on-rest": "~1.0.1",
"babel-cli": "~6.24.1",
"babel-core": "~6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-istanbul": "~4.1.3",
"babel-preset-es2015": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"eslint": "~3.19.0",
"eslint-config-prettier": "~1.7.0",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-prettier": "~2.0.1",
"expect": "~1.20.2",
"husky": "~0.13.3",
"istanbul-cobertura-badger": "~1.3.0",
"lint-staged": "~3.4.1",
"mocha": "~3.3.0",
"nyc": "~10.3.2",
"prettier": "~1.3.1"
},
"dependencies": {
"aor-realtime": "0.0.1",
"apollo-client": "~1.2.0",
"babel-plugin-transform-runtime": "~6.23.0",
"graphql": "~0.9.6",
"graphql-tag": "~2.0.0",
"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": "~4.1.0",
"react-router-redux": "~5.0.0-alpha.5",
"redux-saga": "~0.14.6"
},
"peerDependencies": {
"admin-on-rest": "~0.9.1"
}
}