-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.38 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
{
"name": "react-gallery-viewer",
"version": "0.0.7",
"description": "A high performant gallery viewer",
"main": "./lib/GalleryViewer.js",
"scripts": {
"prepublish": "babel ./src --out-dir ./lib",
"demo:watch": "webpack-dev-server --inline --config webpack.config.js --content-base examples --port 5000"
},
"repository": {
"type": "git",
"url": "https://github.com/urbanclap-engg/react-gallery-viewer"
},
"keywords": [
"react",
"react-component",
"react-gallery-viewer",
"react-gallery",
"react-image-viewer"
],
"author": "Piyush Tiwari",
"license": "ISC",
"devDependencies": {
"babel": "^6.0.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.5.2",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-typecheck": "^3.6.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.26.1",
"eslint": "1.10.3",
"eslint-loader": "^1.0.0",
"eslint-plugin-import": "^0.8.0",
"eslint-plugin-react": "^3.5.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"classnames": "2.2.1",
"react": "^0.14.0 || ^15.0.1 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.1 || ^16.0.0"
}
}