-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
{
"name": "react-private-public-route",
"version": "1.1.1",
"description": "React router package which provide private, public & restricted routes which helps to authenticate different routes in react App.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ronaksonigara/react-private-public-route.git"
},
"bugs": {
"url": "https://github.com/ronaksonigara/react-private-public-route/issues"
},
"homepage": "https://github.com/ronaksonigara/react-private-public-route#readme",
"peerDependencies": {
"react": "^16.13.0",
"prop-types": "^15.7.2",
"react-router-dom": "^5.1.2"
},
"files": [
"build"
],
"scripts": {
"start": "webpack --mode development",
"start:watch": "webpack --mode development --watch",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"prop-types",
"react-router",
"react-router-dom",
"react-private-public-route",
"react-routing",
"react-private-route",
"react-public-route",
"react-restricted-route",
"react-authenticate-route"
],
"author": "Ronak Sonigara",
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}