-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "use-hash-history",
"version": "1.3.4",
"description": "A history hook for react-router-dom",
"scripts": {
"lint": "eslint src",
"build": "rm -rf build && tsc -b",
"format": "prettier --ignore-path .eslintignore --write .",
"c8": "npx --yes c8 --exclude demo uvu -r tsm tests",
"test": "uvu -r tsm tests",
"demo": "vite serve demo --host"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"license": "MIT",
"author": "John T. Hoffer",
"repository": "github:thejohnhoffer/use-hash-history",
"exports": {
".": "./build/index.js"
},
"files": [
"build"
],
"keywords": [
"history",
"location",
"hook",
"react"
],
"peerDependencies": {
"history": "5.x"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.16.8",
"@testing-library/react": "^13.0.0-alpha.5",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-react": "^1.1.4",
"eslint": "^8.6.0",
"hast-util-to-html": "^8.0.3",
"hastscript": "^7.0.2",
"history": "^5.2.0",
"linkedom": "^0.13.0",
"linkedom-history": "^1.1.2",
"prettier": "^2.5.1",
"react": "^18.0.0-rc.0",
"react-dom": "^18.0.0-rc.0",
"react-router-dom": "^6.2.1",
"tsm": "^2.2.1",
"typescript": "^4.5.4",
"uvu": "^0.5.3",
"vite": "^2.8.0-beta.1"
}
}