forked from jossmac/react-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-images-v2",
"version": "2.0.0",
"description": "A mobile-friendly, highly customizable, carousel component for displaying media in ReactJS",
"main": "lib/index.js",
"jsnext:main": "dist/react-images.es.js",
"module": "dist/react-images.es.js",
"author": "Joss Mackison",
"contributors": ["R.M. de Vos <[email protected]>"],
"license": "MIT",
"keywords": [
"react",
"images",
"carousel",
"lightbox",
"gallery",
"modal"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"dotenv": "^5.0.0",
"eslint": "^4.6.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.63.1",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"istanbul": "^0.4.5",
"lint-staged": "^6.0.0",
"nps": "^5.7.1",
"nps-utils": "^1.3.0",
"react-helmet": "^5.2.0",
"react-lorem-component": "^0.12.2",
"react-router-dom": "^4.2.2",
"react-syntax-highlighter": "^7.0.0",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"style-loader": "^0.20.1",
"uglify-es": "^3.0.28",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"dependencies": {
"a11y-focus-store": "^1.0.0",
"glam": "^5.0.1",
"raf-schd": "^2.1.0",
"react-full-screen": "^0.2.2",
"react-scrolllock": "^1.0.9",
"react-transition-group": "^2.2.1",
"react-view-pager": "^0.6.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"scripts": {
"build": "nps build",
"watch": "nps build.watch",
"delete": "rm -rf node_modules",
"lint": "eslint .",
"deploy": "cross-env NODE_ENV=production nps publish",
"start": "webpack-dev-server --progress",
"precommit": "flow check && lint-staged"
},
"files": [
"dist",
"lib",
"src"
],
"lint-staged": {
"*.js": "eslint"
}
}