forked from jossmac/react-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.7 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
90
91
92
93
94
95
96
97
{
"name": "react-images",
"version": "1.1.0-beta.5",
"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",
"types": "./index.d.ts",
"author": "Joss Mackison",
"repository": {
"url": "https://github.com/jossmac/react-images"
},
"bugs": {
"url": "https://github.com/jossmac/react-images/issues"
},
"homepage": "https://jossmac.github.io/react-images/",
"license": "MIT",
"keywords": [
"react",
"images",
"carousel",
"lightbox",
"gallery",
"modal"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"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.24",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.17.0",
"flow-bin": "^0.63.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^2.30.1",
"istanbul": "^0.4.5",
"lint-staged": "^6.1.1",
"nps": "^5.9.12",
"nps-utils": "^1.7.0",
"react-helmet": "^5.2.1",
"react-lorem-component": "^0.12.2",
"react-router-dom": "^4.3.1",
"react-syntax-highlighter": "^7.0.4",
"rollup": "^0.53.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^2.0.1",
"style-loader": "^0.20.3",
"uglify-es": "^3.3.9",
"webpack": "^4.41.5",
"webpack-dev-server": "^2.11.5"
},
"dependencies": {
"a11y-focus-store": "^1.0.0",
"cross-env": "^6.0.3",
"glam": "^5.0.1",
"raf-schd": "^2.1.2",
"react-full-screen": "^0.2.2",
"react-scrolllock": "^4.0.1",
"react-transition-group": "^2.9.0",
"react-view-pager": "^0.6.0"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0",
"prop-types": "^15.7.2"
},
"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",
"index.d.ts"
],
"lint-staged": {
"*.js": "eslint"
}
}