-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.34 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
84
85
86
87
88
{
"name": "navigation-state-hooks",
"version": "0.1.3",
"description": "React Hooks for storing navigation state",
"author": "Simone Busoli <[email protected]>",
"repository": "simoneb/navigation-state-hooks",
"files": [
"cjs/",
"es/",
"umd/",
"src/",
"react-router/",
"reach-router/"
],
"scripts": {
"clean": "rimraf cjs es umd",
"prepare": "run-s clean build",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "dotenv -e .token release-it --",
"toc": "markdown-toc README.md -i",
"test": "jest",
"examples": "run-p examples:*",
"examples:server": "node examples/server.js",
"examples:client": "npm run build:watch"
},
"keywords": [
"react",
"state",
"navigation",
"router",
"react-router",
"reach-router"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@reach/router": "^1.3.4",
"@rollup/plugin-babel": "^5.2.2",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"dotenv-cli": "^4.0.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"release-it": "^14.2.2",
"rollup": "^2.35.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"serve": "^11.3.2"
},
"peerDependencies": {
"@reach/router": "^1.3.4",
"react-router-dom": "^5.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}