forked from marmelab/json-graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.09 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
70
71
72
73
74
{
"name": "json-graphql-server",
"version": "2.1.1",
"main": "lib/json-graphql-server.node.min.js",
"browser": "lib/json-graphql-server.client.min.js",
"repository": "[email protected]:marmelab/json-graphql-server.git",
"authors": [
"François Zaninotto",
"Gildas Garcia"
],
"files": [
"*.md",
"lib",
"src",
"bin"
],
"license": "MIT",
"scripts": {
"format": "make format",
"precommit": "lint-staged",
"test": "jest",
"watch-test": "make watch-test",
"server": "make run",
"prepublish": "make build"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/jest": "~19.2.4",
"babel-cli": "~6.24.1",
"babel-core": "~6.25.0",
"babel-eslint": "~7.2.3",
"babel-jest": "~20.0.3",
"babel-loader": "7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "~6.22.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"eslint": "~4.2.0",
"eslint-config-prettier": "~2.3.0",
"eslint-plugin-import": "~2.7.0",
"eslint-plugin-jest": "~20.0.3",
"eslint-plugin-prettier": "~2.1.2",
"husky": "~0.13.3",
"jest": "~20.0.4",
"lint-staged": "~3.4.1",
"prettier": "~1.5.2",
"supertest": "~3.0.0",
"webpack": "~3.10.0"
},
"dependencies": {
"apollo-client": "~1.2.0",
"apollo-test-utils": "~0.3.2",
"cors": "^2.8.4",
"express": "~4.15.3",
"express-graphql": "~0.6.7",
"graphql": "~0.10.5",
"graphql-tag": "~2.0.0",
"graphql-tools": "~1.1.0",
"graphql-type-json": "~0.1.4",
"inflection": "~1.12.0",
"lodash.merge": "~4.6.0",
"reify": "~0.12.0",
"xhr-mock": "^2.0.3"
},
"bin": {
"json-graphql-server": "bin/json-graphql-server.js"
}
}