-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "usesearch",
"version": "0.1.0",
"description": "React hook for url searches",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/@glweems"
},
"scripts": {
"start": "react-scripts start",
"build": "rollup -c",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-router-dom": ">=4.0.0",
"lodash": ">=4.0.0",
"query-string": ">=5.0.0"
},
"dependencies": {
"lodash": "^4.17.15",
"query-string": "6.12.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "5.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/lodash": "^4.14.155",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-router-dom": "5.1.5",
"axios": "^0.19.2",
"axios-hooks": "^1.10.0",
"figlet": "^1.4.0",
"react-scripts": "^3.4.1",
"rollup": "^2.12.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"typescript": "3.9.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/glweems/useSearch.git"
},
"keywords": [
"react",
"hooks",
"search"
],
"author": "Garrett Weems <gwgraphicdesign@gmail.com> (https://glweems.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/glweems/useSearch/issues"
},
"homepage": "https://github.com/glweems/useSearch#readme"
}