-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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": "reactive-blueimp-gallery",
"version": "0.2.0",
"description": "A React wrapper for BlueImp gallery",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint components/ReactBlueImpGallery",
"build": "export BABEL_ENV=production && node ./node_modules/babel-cli/bin/babel.js -d dist/ components/ReactBlueImpGallery --source-maps",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -s ./public -p 9001",
"test-storybook": "storyshots",
"build-storybook": "export BABEL_ENV=stage && build-storybook -s public -o .out",
"deploy-storybook": "storybook-to-ghpages",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cosmitar/reactive-blueimp-gallery.git"
},
"keywords": [
"reactjs",
"javascript",
"image",
"video",
"gallery",
"carousel",
"lightbox",
"mobile",
"desktop",
"touch",
"responsive",
"swipe",
"mouse",
"keyboard",
"navigation",
"transition",
"effects",
"slideshow",
"fullscreen"
],
"homepage": "https://cosmitar.github.io/reactive-blueimp-gallery/",
"author": {
"name": "Cosmitar",
"url": "https://github.com/Cosmitar"
},
"license": "MIT",
"dependencies": {
"blueimp-gallery": "^2.25.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-deployer": "^1.2.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-babili": "0.0.12",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"eslint": ">=4.18.2",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
}
}