-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
{
"name": "react-leaf-carousel",
"version": "3.0.0",
"description": "React simple infinite carousel with lazy loading and responsive support",
"scripts": {
"build": "WEBPACK_ENV=build webpack --mode production",
"start": "WEBPACK_ENV=dev webpack-dev-server --mode development",
"update:packages": "node wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save",
"semantic-release": "semantic-release --no-ci"
},
"repository": {
"type": "git",
"url": "https://github.com/leaffm/react-infinite-carousel.git"
},
"keywords": [
"carousel",
"slider",
"infinite carousel",
"responsive carousel",
"react carousel",
"react slider",
"lazy loading"
],
"author": "Leaf Music",
"license": "MIT",
"main": "./lib/react-infinite-carusel.min.js",
"bugs": {
"url": "https://github.com/leaffm/react-infinite-carousel/issues"
},
"homepage": "https://github.com/leaffm/react-infinite-carousel#readme",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-stage-0": "*",
"@semantic-release/npm": "^8.0.3",
"babel-loader": "^8.2.3",
"babel-plugin-transform-class-properties": "*",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "*",
"eslint-plugin-flowtype": "*",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"extract-text-webpack-plugin": "*",
"gm-base64": "*",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-responsive-mixin": "^0.4.0",
"uniqid": "^5.4.0"
},
"npmName": "react-leaf-carousel",
"npmFileMap": [
{
"basePath": "/lib/",
"files": [
"*.js"
]
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}