forked from apollographql/meteor-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "apollo-meteor-integration",
"version": "1.0.0",
"description": " 🚀 Add Apollo to your Meteor app",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint --quiet --ext .js .",
"prettier": "prettier --write \"src/*.js\" \"tests/*.js\" --single-quote=true --trailing-comma=es5 --print-width=100",
"test": "meteor test-packages ./ --driver-package practicalmeteor:mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/meteor-integration.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/meteor-integration/issues"
},
"homepage": "https://github.com/apollostack/meteor-integration#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.1.4",
"apollo-client": "^2.0.4",
"apollo-link": "^1.0.7",
"apollo-link-http": "^1.3.2",
"apollo-server-express": "^1.0.4",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"graphql": "^0.12.3",
"graphql-tools": "^2.14.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-import-resolver-meteor": "^0.3.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-meteor": "^4.1.0",
"eslint-plugin-prettier": "^2.1.2",
"isomorphic-fetch": "^2.2.1",
"prettier": "^1.5.3",
"spacejam": "^1.6.1"
}
}