-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
{
"name": "apollo-hooks-extended",
"version": "1.0.1",
"description": "Library of additional hooks and wrappers for Apollo Client",
"private": false,
"keywords": [
"apollo",
"graphql",
"react",
"hooks",
"client",
"helpers"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Marc Ed Raffalli",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marc-ed-raffalli/apollo-hooks-extended"
},
"homepage": "https://github.com/marc-ed-raffalli/apollo-hooks-extended",
"bugs": "https://github.com/marc-ed-raffalli/apollo-hooks-extended/issues",
"scripts": {
"build": "run-s clean check-code compile test",
"clean": "rm -rf dist",
"compile": "tsc -p .",
"test": "jest",
"test:watch": "yarn test --watchAll",
"test:coverage": "yarn test --coverage",
"coverage": "yarn test:coverage && coveralls < coverage/lcov.info",
"check-code": "run-p lint prettier",
"lint": "eslint ./src",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepublishOnly": "yarn build",
"version": "git add -A .",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^15.0.0",
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@apollo/client": "^3.2.0",
"@testing-library/dom": "^7.30.0",
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"graphql": "^15.3.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.5.4",
"typescript": "^4.0.2"
}
}