-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "infiscroll",
"version": "0.0.2",
"description": "InfiScroll is an open-source React component designed to help developers easily implement infinite scrolling in their applications. With a focus on simplicity and flexibility, InfiScroll allows you to seamlessly load additional content as users reach the end of the page, providing a smooth and efficient user experience. Whether you’re building a social media feed, an e-commerce catalog, or any content-heavy application, InfiScroll makes infinite scrolling effortless to integrate and customize.",
"main": "dist/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static"
},
"files": [
"dist",
"readme.md",
"LICENSE"
],
"keywords": [
"react",
"infinite scroll",
"scroll",
"component"
],
"author": "jukangpark",
"license": "MIT",
"dependencies": {
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"jest-html-reporters": "^3.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"vite": "^5.4.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.7.0",
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-interactions": "^8.2.6",
"@storybook/addon-links": "^8.2.6",
"@storybook/addon-onboarding": "^8.2.6",
"@storybook/blocks": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-vite": "^8.2.6",
"@storybook/test": "^8.2.6",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"storybook": "^8.2.6",
"ts-jest": "^29.2.5"
},
"homepage": "https://github.com/nkia-development/InfiScroll",
"bugs": {
"url": "https://github.com/nkia-development/InfiScroll/issues"
}
}