-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "react-snap-carousel",
"version": "0.5.0",
"description": "DOM-first, headless carousel for React, utilizing native browser scrolling & CSS scroll snap points",
"author": {
"name": "Richard Scarrott",
"url": "https://richardscarrott.com"
},
"sideEffects": false,
"main": "./dist/use-snap-carousel.js",
"exports": {
".": {
"types": "./dist/use-snap-carousel.d.ts",
"import": "./dist/use-snap-carousel.mjs",
"require": "./dist/use-snap-carousel.js"
}
},
"homepage": "https://github.com/richardscarrott/react-snap-carousel#readme",
"repository": "https://github.com/richardscarrott/react-snap-carousel",
"keywords": [
"react",
"carousel",
"responsive",
"headless",
"snap",
"scroll",
"scrolling",
"scroller",
"swipe",
"swiper",
"slide",
"slider",
"slideshow",
"gallery"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@riscarrott/storybook-source-link": "^2.0.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack4": "^6.5.14",
"@storybook/manager-webpack4": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.2",
"@types/react": "^18.0.25",
"babel-loader": "^8.3.0",
"classnames": "^2.3.2",
"esbuild": "^0.15.7",
"eslint": "^8.40.0",
"eslint-config-react-app": "^7.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook-css-modules": "^1.0.8",
"ts-jest": "^29.0.3",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
},
"scripts": {
"build": "tsup src/use-snap-carousel.tsx --format esm,cjs --dts --clean",
"test": "jest",
"lint": "eslint src/** && prettier --check src/**",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs"
},
"files": [
"dist"
]
}