-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
109 lines (109 loc) · 3.04 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "use-pouchdb",
"version": "1.0.0",
"description": "React Hooks for PouchDB",
"main": "lib/node/index.js",
"browser": "lib/index.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && tsc --project node-tsconfig.json",
"format": "prettier --write .",
"prepublish": "npm run build",
"test": "jest --watch",
"test-ci": "jest --ci",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"textlint": "textlint README.md docs/*",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"keywords": [
"react",
"hooks",
"react-hooks",
"typescript",
"pouchdb",
"couchdb"
],
"author": {
"name": "Christopher Astfalk",
"email": "christopher.astfalk@icloud.com",
"url": "https://christopher-astfalk.de/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Terreii/use-pouchdb.git"
},
"homepage": "https://terreii.github.io/use-pouchdb/",
"files": [
"README.md",
"lib"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/react": "^13.3.0",
"@tsconfig/node12": "^1.0.9",
"@types/jest": "^26.0.15",
"@types/node": "^14.18.42",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-jest": "^26.6.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.2",
"pouchdb-adapter-memory": "^8.0.1",
"pouchdb-find": "^8.0.1",
"pouchdb-mapreduce": "^8.0.1",
"pouchdb-selector-core": "^8.0.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"semantic-release": "^21.0.1",
"textlint": "^12.0.2",
"textlint-rule-alex": "^3.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"typescript": "^4.0.5",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.9"
},
"dependencies": {
"@types/pouchdb-core": "^7.0.11",
"@types/pouchdb-find": "^7.3.0",
"@types/pouchdb-mapreduce": "^6.1.6",
"@types/react": "^18.0.14",
"fast-deep-equal": "^3.1.3",
"pouchdb-core": "^8.0.1",
"pouchdb-errors": "^8.0.1",
"pouchdb-utils": "^8.0.1"
},
"peerDependencies": {
"react": ">=16.8"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release": {
"branches": [
"latest"
]
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true
}
}