-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
39 lines (39 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
38
39
{
"name": "apollo-absinthe-upload-link",
"version": "1.7.0",
"description": "A network interface for Apollo that enables file-uploading to Absinthe back ends.",
"main": "lib/index.js",
"module": "lib/index.js",
"repository": "https://github.com/bytewitchcraft/apollo-absinthe-upload-link",
"author": "Ihor Katkov",
"license": "MIT",
"scripts": {
"test": "jest",
"compile": "yarn rimraf lib/* && yarn babel src -d lib && yarn rimraf lib/__tests__ && yarn rimraf lib/__mocks__",
"prepublish": "npm run compile"
},
"dependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^15.0.0",
"rxjs": "~6.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.14.0",
"eslint-plugin-prettier": "^2.4.0",
"fetch-mock": "^6.5.2",
"jest": "^22.2.1",
"node-fetch": "^2.2.0",
"prettier": "1.9.2",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"rxjs": ">=6.0.0"
}
}