-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.03 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "saga-query",
"version": "0.0.0",
"description": "Data fetching and caching using a middleware system",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/neurosnap/saga-query.git",
"author": "Eric Bower <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "tsc --noEmit && ava",
"template": "ts-node ./api-type-template.ts",
"prepare": "husky install",
"fmt": "prettier --write **/*.ts",
"build": "tsc"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"react": [
"dist/react.d.ts"
]
}
},
"devDependencies": {
"@testing-library/react": "^13.2.0",
"@types/node": "^17.0.23",
"@types/prettier": "^2.7.2",
"ava": "^4.1.0",
"cross-fetch": "^3.1.5",
"global-jsdom": "^8.4.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.3.7",
"nock": "^13.2.4",
"prettier": "^2.6.2",
"react": "18",
"react-dom": "18",
"react-redux": "^8.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"react-redux": ">=7.2.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-redux": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"dependencies": {
"redux": "^4.1.2",
"redux-batched-actions": "^0.5.0",
"redux-saga": "^1.2.3",
"robodux": "^15.0.2",
"typed-redux-saga": "^1.5.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"cross-fetch/polyfill"
],
"nodeArguments": [
"--no-experimental-fetch"
]
},
"lint-staged": {
"*.ts": "prettier --write"
}
}