-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "use-dexie",
"version": "1.2.4",
"description": "React Hooks to use Dexie.js IndexDB library with ease",
"main": "index.js",
"scripts": {
"test": "jest ./test/*.js",
"commit": "git add . && git-cz",
"version": "standard-version",
"push": "git push --follow-tags",
"release": "npm run commit && npm run version && npm run push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttessarolo/useDexie.git"
},
"keywords": [
"dexie.js",
"indexDB",
"React",
"Hooks"
],
"author": "Tommaso Tessarolo <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ttessarolo/useDexie/issues"
},
"homepage": "https://github.com/ttessarolo/useDexie#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"prettier": "^2.2.1",
"standard-version": "^9.0.0"
},
"dependencies": {
"dexie": "^3.0.3",
"dexie-observable": "^3.0.0-beta.10",
"eslint": "^8.16.0",
"lodash.isequal": "^4.5.0",
"nanoid": "^3.1.20"
},
"peerDependencies": {
"react": "^18.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}