forked from assuncaocharles/react-indexed-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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": "react-indexed-db",
"version": "2.0.1",
"description": "React wrapper to IndexedDB database.",
"main": "lib/main.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"src/*"
],
"scripts": {
"test": "karma start ./karma.conf.js",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/",
"build": "webpack",
"lint": "eslint src/**",
"format": "prettier --write \"**/*.{js,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/assuncaocharles/react-indexed-db.git"
},
"author": "Charles Assunção",
"license": "ISC",
"bugs": {
"url": "https://github.com/assuncaocharles/react-indexed-db/issues"
},
"keywords": [
"indexed",
"db",
"indexeddb",
"websql",
"sql",
"indexed-db",
"database",
"react",
"reactjs",
"database",
"storage"
],
"homepage": "https://github.com/assuncaocharles/react-indexed-db",
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.1",
"typedoc": "^0.24.8",
"typescript": "^5.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}