-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 918 Bytes
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
{
"name": "apollo-multilink",
"version": "1.0.0",
"description": "Wrapper around Apollo http-link to route multiple apis in frontend from single Apollo client instance.",
"main": "index.ts",
"author": "Viljar Võidula",
"license": "MIT",
"private": false,
"devDependencies": {
"@apollo/client": "^3.5.10",
"@types/jest": "^27.4.1",
"coverage-badge-creator": "^1.0.11",
"eslint": "^8.12.0",
"graphql": "^16.3.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint-plugin-import": "^2.25.4"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"coverage:badge": "coverage-badge-creator"
}
}