forked from apollographql/meteor-integration
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "apollo-meteor-integration",
"version": "5.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\"",
"test": "TEST_WATCH=1 meteor test-packages ./ --driver-package meteortesting:mocha",
"test-ci": "meteor test-packages ./ --once --driver-package meteortesting: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",
"devDependencies": {
"@apollo/client": "^3.7.12",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.38.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-prettier": "^4.2.1",
"graphql": "^16.6.0",
"isomorphic-fetch": "^3.0.0",
"prettier": "^2.8.7"
}
}