forked from cvara/rxdb-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.67 KB
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": "rxdb-hooks",
"version": "3.0.1",
"description": "React hooks for integrating with RxDB",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "git@github.com:cvara/rxdb-hooks.git",
"author": "Christoforos Varakliotis <c.varakliotis@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"prettier": "prettier --write \"src/**/*.{js,ts,jsx,tsx}\"",
"lint": "eslint \"src/**/*.{js,ts,jsx,tsx}\" --ignore-path .gitignore",
"test": "yarn jest --no-cache --forceExit --runInBand",
"build": "rimraf dist && tsc --project tsconfig.json",
"prepack": "yarn build",
"typecheck": "tsc --noEmit",
"changelog": "node ./bin/changelog.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^9.4.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.23",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.3",
"jest": "^26.0.1",
"pouchdb-adapter-memory": "^7.2.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.0",
"rimraf": "^3.0.2",
"rxdb": "^9.20.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.0.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"rxdb": ">=9",
"rxjs": ">=6"
},
"resolutions": {
"minimist": "1.2.5"
}
}