-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.27 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-multi-search",
"version": "1.4.0",
"description": "A react hook to filter data based on various search queries.",
"homepage": "https://franz-dc.github.io/react-multi-search",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .ts",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build && touch storybook-static/.nojekyll",
"deploy-storybook": "gh-pages -d storybook-static"
},
"keywords": [
"react",
"hook",
"filter",
"search",
"query"
],
"author": "Franz Joshua Dela Cruz <franzdc.21@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/franz-dc/react-multi-search.git"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/test": "^7.6.17",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.57",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.1.1",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-click-away-listener": "^2.2.3",
"react-dom": "^18.2.0",
"rollup": "^4.45.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.6.17",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}