-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
91 lines (91 loc) · 2.66 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
{
"name": "react-simply-carousel",
"version": "8.1.0",
"description": "A simple, lightweight, fully controlled isomorphic (with SSR support) React.js carousel component. Touch enabled and responsive. With support for autoplay and infinity options. Fully customizable",
"files": [
"dist/"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && yarn lint && yarn generate-types && rollup -c",
"generate-types": "tsc --emitDeclarationOnly",
"lint": "eslint . --ext .tsx",
"prepare": "husky install",
"prepublish": "yarn build",
"check-types": "tsc --noEmit"
},
"keywords": [
"react",
"react-component",
"react-carousel",
"react-slider",
"carousel",
"slider",
"carousel-component",
"slider-component",
"responsive-carousel",
"touch-enabled-carousel",
"infinite-carousel",
"typescript-carousel",
"typescript"
],
"author": "Vadym Shymko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vadymshymko/react-simply-carousel.git"
},
"bugs": {
"url": "https://github.com/vadymshymko/react-simply-carousel/issues"
},
"homepage": "https://github.com/vadymshymko/react-simply-carousel#readme",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"core-js": "^3.8.1"
},
"peerDependencies": {
"@types/react": "^16.8 || ^17 || ^18",
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"lint-staged": {
"*.{js,jsx,tsx}": "eslint --cache --fix",
".": "prettier --write"
}
}