-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.28 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
{
"name": "react-rc-carousel",
"description": "A React carousel component with a very easy-to-use API for creating dynamic and flexible slideshows.",
"version": "4.0.7",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stanleyogada/react-rc-carousel.git"
},
"keywords": [
"react",
"typescript",
"library",
"easy",
"create",
"awesome",
"stanleyogada",
"richCode",
"slider",
"fader",
"carousel",
"beautiful",
"api",
"slide",
"animation"
],
"scripts": {
"dev": "vite",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"storybook": "concurrently \"npm run storybook:css\" \"storybook dev -p 6006\"",
"storybook:css": "tailwindcss -w -i ./src/index.css -o ./src/index.css",
"build-storybook": "concurrently \"npm run build-storybook:css\" \"storybook build\"",
"build-storybook:css": "tailwindcss -m -i ./src/index.css -o ./src/index.css",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-essentials": "^7.0.0-rc.5",
"@storybook/addon-interactions": "^7.0.0-rc.5",
"@storybook/addon-links": "^7.0.0-rc.5",
"@storybook/blocks": "^7.0.0-rc.5",
"@storybook/react": "^7.0.0-rc.5",
"@storybook/react-vite": "^7.0.0-rc.5",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"postcss": "^8.4.24",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-rc.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vite-tsconfig-paths": "^4.0.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"react-icons": "^4.9.0",
"styled-components": "^6.0.0-rc.3"
},
"author": "Stanley Ogada (richCode)",
"license": "MIT"
}