-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.67 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": "mock-relay-server",
"version": "0.1.4",
"description":
"a simple library for generating functions to call in relay server mocks",
"main": "lib/index.js",
"scripts": {
"compile":
"babel --presets es2015,stage-2 -d lib/ src/ --ignore '**/*.spec.js'",
"test": "jest",
"lint": "./node_modules/.bin/eslint src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbranch101/mock-relay-server.git"
},
"author": "Clay Branch",
"license": "ISC",
"bugs": {
"url": "https://github.com/cbranch101/mock-relay-server/issues"
},
"homepage": "https://github.com/cbranch101/mock-relay-server#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"graphql-tools": "2.14.0",
"jest": "^21.2.1",
"prettier": "^1.9.2",
"prettier-eslint-cli": "^4.6.1",
"regenerator-runtime": "^0.11.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2016": "^6.24.1",
"chance": "^1.0.12",
"graphql": "0.12.3",
"graphql-relay": "^0.5.4",
"lodash": "^4.17.4"
}
}