-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "react-idb-cache",
"description": "Cache for React",
"author": "Philipp Fritsche",
"license": "MIT",
"repository": "https://github.com/ph-fritsche/react-idb-cache.git",
"keywords": [
"React",
"cache",
"idb",
"IndexedDB",
"asynchronous",
"fetch"
],
"files": [
"/dist"
],
"dependencies": {
"debug": "^4.3.2",
"idb": "^6.1.4",
"idb-keyval": "^6.0.2"
},
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@ph.fritsche/eslint-config": "^1.0.1",
"@ph.fritsche/scripts-config": "^2.1.1",
"@testing-library/react": "^12.1.2",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.27",
"eslint": "^7.32.0",
"fake-indexeddb": "^3.1.4",
"jest": "^27.2.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"shared-scripts": "^1.4.1",
"ts-jest": "^27.0.4",
"typescript": "^4.4.3"
},
"scripts": {
"build": "scripts ts-build2 --cjs --exportsMap driver/*",
"lint": "eslint src test",
"test": "jest"
}
}