-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.69 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
{
"name": "@kkx64/react-simple-carousel",
"version": "1.5.8",
"description": "Simple carousel component for React",
"author": "Kiril Krsteski",
"homepage": "https://github.com/kkx64/react-simple-carousel",
"repository": {
"type": "git",
"url": "git+https://github.com/kkx64/react-simple-carousel.git"
},
"license": "MIT",
"keywords": [
"react",
"carousel",
"slider",
"simple",
"fast",
"swipe",
"mobile",
"touch",
"gallery",
"image-gallery"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "tsc && NODE_ENV=production vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"lint:scripts": "eslint ./src --ext .ts",
"lint:styles": "stylelint ./**/*.scss",
"format:scripts": "prettier ./src --write",
"format:styles": "stylelint ./**/*.scss --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "npm run build && storybook build"
},
"dependencies": {
"classnames": "^2.5.1"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/builder-vite": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@storybook/test": "^8.3.5",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.2",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.8.0",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"storybook": "^8.3.5",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-sass-guidelines": "^11.1.0",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}