-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.5 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@nutshelllab/aws-apollo-tools",
"version": "1.0.2",
"description": "Aws apollo",
"main": "lib/aws-apollo-tools.js",
"scripts": {
"prebuild": "yarn test",
"build": "webpack --config webpack.config.js",
"pretest": "xo",
"test": "ava",
"lint": "xo --fix"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nutshell-lab/aws-apollo-tools.git"
},
"keywords": [
"graphql",
"apollo",
"aws"
],
"author": "Nutshell",
"license": "GNU GENERAL PUBLIC LICENSE Version 3",
"bugs": {
"url": "https://github.com/nutshell-lab/aws-apollo-tools/issues"
},
"homepage": "https://github.com/nutshell-lab/aws-apollo-tools#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.3.11",
"apollo-client": "^2.4.7",
"apollo-link": "^1.2.4",
"apollo-link-context": "^1.0.10",
"apollo-link-http": "^1.5.7",
"apollo-server-lambda": "^2.2.6",
"aws-sdk": "^2.363.0",
"aws4": "^1.8.0",
"graphql": "^14.0.2",
"node-fetch": "^2.3.0",
"node-localstorage": "^1.3.1",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"ava": "1.0.0-beta.4",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-prettier-standard": "^1.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"imports-loader": "^0.8.0",
"pre-commit": "^1.2.2",
"prettier": "^1.15.2",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2",
"xo": "^0.23.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"xo": {
"space": true,
"semicolon": false,
"prettier": true,
"extends": [
"prettier-standard"
],
"settings": {
"import/resolver": {
"babel-module": {}
}
}
},
"prettier": {
"bracketSpacing": true
},
"ava": {
"concurrency": 5,
"failFast": true,
"files": [
"test/**/*.js"
],
"sources": [
"src/**/*.js"
],
"require": [
"@babel/register"
]
}
}