-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "react-spring-3d-carousel",
"version": "1.3.4",
"repository": {
"type": "git",
"url": "git+https://github.com/gutiguy/react-spring-3d-carousel"
},
"description": "A 3D Carousel component for images built with React and utilizing react-spring for controlling slide transitions.",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "rimraf dist && webpack --mode production"
},
"keywords": [
"carousel",
"react"
],
"author": "Guy Gutman<[email protected]>",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"react-spring": "^8.0.5"
},
"peerDependencies": {
"react": "^16.7.0 || ^17 || ^18",
"react-dom": "^16.7.0 || ^17 || ^18"
},
"devDependencies": {
"@types/node": "^10.12.24",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"@types/uuid": "^3.4.4",
"awesome-typescript-loader": "^5.2.1",
"html-webpack-plugin": "^5.5.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"typescript": "^3.3.1",
"url-loader": "^4.1.1",
"uuid": "^3.3.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
]
}