-
Notifications
You must be signed in to change notification settings - Fork 712
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "react-image-gallery",
"version": "1.3.0",
"description": "React carousel image gallery component with thumbnail and mobile support",
"main": "./build/image-gallery.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js,.jsx src",
"start": "webpack serve --open --hot --mode development",
"build": "webpack --config webpack.build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/xiaolin/react-image-gallery.git"
},
"style": "styles/css/image-gallery.css",
"keywords": [
"react",
"carousel",
"react-component",
"react-carousel",
"react-slideshow",
"react-gallery",
"react carousel",
"react slideshow",
"react gallery",
"image gallery",
"image slider",
"slideshow",
"gallery",
"slider"
],
"author": "Xiao Lin",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiaolin/react-image-gallery/issues"
},
"homepage": "https://github.com/xiaolin/react-image-gallery",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.6.2",
"babel-loader": "^8.2.2",
"clsx": "^1.0.4",
"css-loader": "^5.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "27.2.3",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.2.10",
"postcss-loader": "^5.2.0",
"prettier": "^3.0.0",
"prop-types": "^15.5.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-fast-compare": "^3.2.0",
"react-swipeable": "7.0.1",
"remove-files-webpack-plugin": "^1.4.5",
"resize-observer-polyfill": "^1.5.0",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {}
}