-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "apollo-boost-upload",
"version": "1.0.1",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "https://github.com/michal-wrzosek/apollo-boost-upload",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"prepublishOnly": "npm run build",
"prepare": "install-peers -f && cd example && npm i",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"test": "mocha -r ts-node/register ./test/**/*.spec.ts",
"test:lint": "eslint ./src/**/*.ts ./src/**/*.tsx ./example/src/**/*.ts ./example/src/**/*.tsx",
"test:lint:fix": "npm run test:lint -- --fix"
},
"files": [
"dist"
],
"dependencies": {
"apollo-cache": "^1.3.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-upload-client": "^11.0.0",
"graphql-tag": "^2.10.1"
},
"devDependencies": {
"@types/apollo-upload-client": "^8.1.3",
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"apollo-link-http-common": "^0.2.15",
"chai": "^4.2.0",
"concurrently": "^5.0.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"install-peers-cli": "^2.1.1",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"rollup": "^1.27.5",
"rollup-plugin-typescript2": "^0.25.2",
"ts-node": "^8.5.2",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
}
}