-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "wouter-redux",
"version": "0.1.2",
"description": "Use redux state for wouter",
"license": "MIT",
"keywords": [
"router",
"wouter",
"redux",
"state",
"tiny"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tespkg/wouter-redux.git"
},
"bugs": {
"url": "https://github.com/tespkg/wouter-redux/issues"
},
"homepage": "https://github.com/tespkg/wouter-redux#readme",
"scripts": {
"test": "jest",
"format": "prettier --write 'src/**/*.[tj]s{x,}'",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux": "^4.1.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"wouter": "^2.7.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"redux": ">=4.0.0",
"wouter": ">=2.0.0"
}
}