-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.75 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"version": "1.1.3",
"license": "MIT",
"name": "@jimmyn/apollo-client",
"author": "Dmitriy Nevzorov",
"repository": "https://github.com/jimmyn/apollo-client",
"description": "Apollo Client drop-in replacement with automatic cache updates",
"keywords": [
"apollo",
"apollo-react",
"apollo-react-hooks",
"react",
"react-hooks"
],
"module": "dist/apollo-client.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release": "release-it"
},
"peerDependencies": {
"@apollo/client": "^3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint --fix"
}
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"before:init": [
"yarn lint --fix",
"CI=true yarn test"
]
}
},
"devDependencies": {
"@apollo/client": "^3.3.14",
"@types/jest": "^26.0.22",
"cross-fetch": "^3.1.4",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"husky": "^6.0.0",
"release-it": "^14.6.1",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"react": "^17.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"apollo-utilities": "^1.3.4",
"immer": "^9.0.1"
}
}