This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
46 lines (46 loc) · 1.93 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": "ddp-apollo",
"private": true,
"version": "1.0.0",
"description": "DDP integration for the Apollo Client.",
"main": "lib/setup.js",
"devDependencies": {
"@apollo/client": "3.5.10",
"@apollo/federation": "0.36.1",
"@apollo/gateway": "2.0.1",
"@swydo/apollo-link-ddp": "file:packages/apollo-link-ddp",
"asteroid": "2.0.3",
"body-parser": "1.20.0",
"chai": "4.3.6",
"doctoc": "2.1.0",
"eslint": "8.13.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-meteor": "0.4.0",
"eslint-plugin-import": "2.26.0",
"graphql": "16.3.0",
"graphql-subscriptions": "2.0.0",
"graphql-tag": "2.12.6",
"graphql-tools": "8.2.8",
"react": "18.0.0",
"simpleddp": "2.2.4",
"sinon": "13.0.2"
},
"scripts": {
"doctoc": "doctoc ./README.md",
"eslint": "eslint ./src ./specs",
"publish": "meteor npm install && meteor npm run eslint -s && meteor npm run doctoc -s && rm -rf ./node_modules && rm -rf ./package-lock.json && rm -rf ./test && meteor publish && cd ./packages/apollo-link-ddp && meteor npm publish",
"setup-test": "cd packages/apollo-link-ddp && npm install && npm build && cd ../../ && rm -rf ./test && meteor create --bare test && cd test && meteor npm i --save selenium-webdriver@3 chromedriver @babel/runtime@7.2.0",
"test": "meteor npm run setup-test && cd test && METEOR_PACKAGE_DIRS=../ TEST_BROWSER_DRIVER=chrome meteor test-packages --once --driver-package meteortesting:mocha ../",
"test-watch": "meteor npm run setup-test && cd test && TEST_WATCH=1 METEOR_PACKAGE_DIRS=../ TEST_BROWSER_DRIVER=chrome meteor test-packages --driver-package meteortesting:mocha ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swydo/ddp-apollo.git"
},
"author": "Swydo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swydo/ddp-apollo/issues"
},
"homepage": "https://github.com/Swydo/ddp-apollo#readme"
}