-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "@yuxuan-zheng/react-infinite-scroll",
"version": "2.0.3",
"description": "A react compontent implements infinite scroll functionality",
"keywords": [
"react",
"infinite scroll",
"react component",
"react infinite scroll",
"react hooks",
"reverse scrolling"
],
"files": [
"dist",
"type"
],
"main": "dist/main.umd.js",
"module": "dist/main.es.js",
"types": "type/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jason89521/react-infinite-scroll"
},
"homepage": "https://reactinfinitescroll.vercel.app/",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --mode lib && tsc --project tsconfig.lib.json",
"build:demo": "tsc && vite build",
"prepare": "yarn build",
"preview": "vite preview",
"cypress": "cypress open-ct",
"test": "cypress run-ct"
},
"devDependencies": {
"@cypress/react": "^5.12.3",
"@cypress/vite-dev-server": "^2.2.2",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"cypress": "^9.5.0",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.3",
"vite": "^2.8.0",
"vite-tsconfig-paths": "^3.4.0"
},
"peerDependencies": {
"react": "^18.0.0"
},
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"website"
]
}