forked from frontend-collective/react-image-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"name": "react-image-lightbox",
"version": "4.2.1",
"description": "A lightbox component for React.js",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack --config webpack.config.umd.babel.js --bail",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.demo.babel.js --bail",
"clean": "rimraf dist/umd",
"clean:demo": "rimraf build",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --config webpack.config.dev.babel.js",
"test": "webpack",
"lint": "eslint src",
"deploy": "npm run build:demo && gh-pages -d build",
"prepublishOnly": "npm run lint && npm run build"
},
"main": "dist/umd/react-image-lightbox.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/fritz-c/react-image-lightbox.git"
},
"homepage": "https://fritz-c.github.io/react-image-lightbox",
"bugs": "https://github.com/fritz-c/react-image-lightbox/issues",
"authors": [
"Chris Fritz"
],
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^15.5.0",
"react-dom": "^15.5.0"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"eslint": "^3.2.2",
"eslint-config-blue-hour": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.22.0",
"isomorphic-style-loader": "^2.0.0",
"node-sass": "8.0.0",
"postcss-loader": "^1.1.0",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-hot-loader": "^1.3.0",
"react-modal": "^2.3.3",
"rimraf": "^2.5.3",
"sass-loader": "^4.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "^1.6.0"
},
"keywords": [
"react",
"react-component",
"image",
"lightbox"
]
}