This repository was archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
{
"name": "use-route-as-state",
"version": "0.0.0-development",
"description": "Use React Router route and query string as component state",
"author": "baruchiro",
"license": "MIT",
"repository": "baruchiro/use-route-as-state",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"keywords": [
"react",
"url",
"query",
"parameters",
"hook",
"hooks",
"query param",
"react use",
"react-hooks",
"react-router"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"lint": "eslint -f node_modules/eslint-friendly-formatter src",
"lint:fix": "yarn lint --fix",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c && tsc -d --emitDeclarationOnly --noEmit false --declarationDir dist",
"start": "rollup -c -w",
"prepare": "yarn run build",
"build:pages": "cd example && yarn install && yarn run build",
"gpr-setup": "node .github/scripts/gpr.js",
"release": "semantic-release"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-router-dom": ">=5.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.1.0",
"@rollup/plugin-url": "^6.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^26.0.13",
"@types/react": "^17.0.0",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"conventional-changelog-eslint": "^3.0.9",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-react-hooks": "^4.1.2",
"history": "^4.0.0",
"react": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.26.9",
"rollup-plugin-peer-deps-external": "^2.2.0",
"semantic-release": "^19.0.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"resolutions": {
"nth-check": "^2.1.1"
}
}