forked from VLZH/react-lightgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.2 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
{
"name": "react-lightgallery",
"version": "0.6.2",
"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": "GPLv3",
"dependencies": {
"browser-or-node": "^1.1.0",
"lg-autoplay.js": "^1.0.0",
"lg-fullscreen.js": "^1.0.0",
"lg-hash.js": "^1.0.0",
"lg-pager.js": "^1.0.0",
"lg-thumbnail.js": "^1.0.0",
"lg-video.js": "^1.0.0",
"lg-zoom.js": "^1.0.0",
"lg-share.js": "^1.0.0",
"lightgallery.js": "^1.1.3",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"uniqid": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "10.0.3",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.5",
"parcel-bundler": "^1.12.3",
"prettier": "^1.16.4",
"rollup": "^1.21.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-uglify": "^6.0.3"
}
}