This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
forked from TomorrowIdeas/react-card-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "react-card-carousel",
"version": "1.1.3",
"description": "Simple React carousel.",
"license": "MIT",
"author": {
"name": "Joy Hou",
"email": "yuejiao.hou@gmail.com",
"url": "https://github.com/strawbee"
},
"keywords": [
"React",
"simple",
"fast",
"carousel",
"cards"
],
"main": "./build/index.js",
"scripts": {
"start": "webpack --watch",
"watch": "webpack-dev-server --inline --hot --port=8005",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"babel-cli": "^7.0.0-beta.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^6.6.0",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"react-swipeable": "^5.5.1"
}
}