forked from onderonur/react-router-modal-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "react-router-modal-gallery",
"version": "1.1.3",
"description": "A simple package to create modal gallery with react-router",
"author": "Onur Onder",
"homepage": "https://react-router-modal-gallery.netlify.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/onderonur/react-router-modal-gallery.git"
},
"bugs": {
"url": "https://github.com/onderonur/react-router-modal-gallery/issues"
},
"keywords": [
"react",
"react-router",
"modal-gallery",
"modal",
"react-component"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "./index.d.ts",
"files": [
"es",
"lib",
"umd",
"index.d.ts"
],
"scripts": {
"start": "nwb serve-react-demo",
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=16.8.5",
"react-dom": ">=16.8.5",
"react-router-dom": ">=5.0.0"
},
"devDependencies": {
"@material-ui/core": "^4.3.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"nwb": "0.23.x",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"styled-components": "^4.3.2"
}
}