forked from sag1v/react-elastic-carousel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 5.17 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 5.17 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@itseasy21/react-elastic-carousel",
"version": "1.0.2",
"description": "A flexible and responsive carousel component for react",
"author": "itseasy21",
"type": "module",
"contributors": [
{
"name": "sag1v (Sagiv Ben Giat)"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itseasy21/react-elastic-carousel.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"jsnext:main": "dist/index.es.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"set-node-options": "node -e \"process.stdout.write(process.version.startsWith('v16') ? '' : '--openssl-legacy-provider')\"",
"start": "cross-env NODE_OPTIONS=\"$(yarn run --silent set-node-options)\" concurrently -r -k -s all \"docz dev\" \"yarn run lint:watch\"",
"demo": "cross-env NODE_OPTIONS=\"$(yarn run --silent set-node-options) --max-old-space-size=4096\" concurrently -r -k -s all \"rollup --bundleConfigAsCjs --config rollup.config.demo.js --watch --no-watch.chokidar\" \"yarn run lint:watch\"",
"lint:fix": "eslint src/* --fix",
"lint:watch": "esw --watch --fix src/*",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"prebuild": "yarn run lint:fix",
"build": "cross-env NODE_OPTIONS=\"$(yarn run --silent set-node-options)\" yarn run prebuild && rollup --bundleConfigAsCjs -c",
"build-doc": "cross-env NODE_OPTIONS=\"$(yarn run --silent set-node-options)\" docz build",
"deploy-doc": "cross-env NODE_OPTIONS=\"$(yarn run --silent set-node-options)\" gh-pages -d demo"
},
"lint-staged": {
"*.js": "eslint src/. --fix"
},
"dependencies": {
"classnames": "^2.3.2",
"prop-types": "^15.8.1",
"react-swipeable": "^7.0.2",
"resize-observer-polyfill": "^1.5.1"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "16.8.3 - 19",
"react-dom": "16.8.3 - 19",
"styled-components": "^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"babel-eslint": "^9.0.0",
"concurrently": "^4.1.0",
"cross-env": "^5.1.4",
"docz": "^2.3.1",
"eslint": "5.12.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-watch": "^4.0.2",
"gatsby-plugin-google-analytics": "^2.1.34",
"gh-pages": "^2.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "1.14.2",
"prettier-eslint": "^8.8.2",
"react": "^18",
"react-dom": "^18",
"react-scripts": "^2.1.8",
"react-test-renderer": "^16.5.2",
"rollup": "^4.9.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-url": "^3.0.1",
"styled-components": "^6.1.15"
},
"files": [
"dist"
],
"keywords": [
"itseasy21",
"react",
"react-carousel",
"carousel",
"responsive",
"reactjs",
"carrousel",
"slides",
"flexibale",
"rtl",
"right-to-left",
"resize",
"touch"
],
"resolutions": {
"ansi-styles": "^3.2.0"
}
}