-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.3 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
{
"name": "rxdb-hooks",
"version": "5.0.2",
"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,
"keywords": [
"rxdb",
"react",
"hooks",
"react-rxdb",
"use-rxdb",
"react-hooks"
],
"scripts": {
"prettier": "prettier --write \"{src,tests}/**/*.{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",
"start:parcel": "parcel ./examples/parcel/index.html",
"start:webpack": "webpack serve --config examples/webpack/webpack.config.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^25.2.3",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@webpack-cli/generators": "^3.0.1",
"dotenv": "^8.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.0.4",
"events": "^3.1.0",
"fake-indexeddb": "^4.0.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^4.2.3",
"jest": "^26.0.1",
"parcel": "^2.8.3",
"pouchdb-adapter-memory": "^7.2.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rxdb": "14.1.1",
"rxjs": "^7.5.7",
"shelljs": "^0.8.4",
"ts-jest": "^26.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"rxdb": ">=14",
"rxjs": ">=7.5.4"
},
"resolutions": {
"minimist": "1.2.5"
}
}