forked from VLZH/react-lightgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.34 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
{
"name": "react-lightgallery",
"version": "0.9.0",
"description": "React wrapper for https://github.com/sachinchoolur/lightgallery.js",
"keywords": [
"react",
"gallery",
"image-gallery",
"lightbox",
"lightgallery.js",
"lg-zoom.js",
"lg-thumbnail.js",
"lg-video.js",
"lightgallery"
],
"main": "dist/index.js",
"scripts": {
"build": "NODE_ENV=production yarn rollup -c ./rollup.config.js",
"build:example": "NODE_ENV=production yarn rollup -c ./rollup.config.js",
"start": "yarn rollup --watch -c ./rollup.config.js",
"start:example": "parcel serve --out-dir ./.example_dist ./example/index.html",
"lint": "yarn eslint ./"
},
"author": "VLZH",
"repository": "https://github.com/VLZH/react-lightgallery.git",
"license": "MIT",
"dependencies": {
"browser-or-node": "^1.3.0",
"hoist-non-react-statics": "^3.3.2",
"lg-autoplay.js": "^1.2.0",
"lg-fullscreen.js": "^1.2.0",
"lg-hash.js": "^1.0.0",
"lg-pager.js": "^1.0.0",
"lg-share.js": "^1.3.0",
"lg-thumbnail.js": "^1.2.0",
"lg-video.js": "^1.2.0",
"lg-zoom.js": "^1.2.0",
"lightgallery.js": "^1.2.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"uniqid": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "10.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.3",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.15.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-uglify": "^6.0.3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}