-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "react-app-location",
"version": "1.2.1",
"description": "A package to avoid repetition with Routes, Links and URLs, and reduce boilerplate with location param parsing in React Apps",
"main": "./dist/Location.js",
"repository": "https://github.com/bradstiff/react-app-location.git",
"scripts": {
"start": "webpack-dev-server --mode development",
"test": "jest",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production && cp examples/public/404.html examples/dist/404.html",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy"
},
"keywords": [
"react",
"router",
"route",
"location"
],
"author": "Brad Stiff",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.1",
"css-loader": "^0.28.11",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.3.1",
"react-testing-library": "^5.0.0",
"regenerator-runtime": "^0.12.1",
"style-loader": "^0.23.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7",
"yup": "^0.26.3"
},
"peerDependencies": {
"react": ">=16.4.2",
"react-dom": ">=16.4.2",
"react-router-dom": ">=4.3.1",
"yup": ">=0.26.3"
},
"dependencies": {
"app-location": "^1.1.1",
"querystringify": "^2.0.0",
"warning": "^4.0.2"
},
"jest": {
"roots": [
"tests"
],
"testRegex": "\\.js"
}
}