forked from inokawa/virtua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.05 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "virtua",
"version": "0.4.0",
"description": "A zero-config, fast and small (~3kB) virtual list and grid component for React.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"test": "jest",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --quiet --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"e2e": "npx playwright test",
"typedoc": "typedoc",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"devDependencies": {
"@babel/plugin-transform-react-pure-annotations": "7.18.6",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@emotion/react": "11.10.8",
"@emotion/styled": "11.10.8",
"@faker-js/faker": "8.0.2",
"@mui/material": "5.12.3",
"@playwright/test": "^1.34.3",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.2",
"@storybook/addon-docs": "7.0.18",
"@storybook/react": "7.0.18",
"@storybook/react-vite": "^7.0.18",
"@storybook/test-runner": "0.10.0",
"@tanstack/react-virtual": "3.0.0-alpha.0",
"@testing-library/react": "14.0.0",
"@types/react": "18.2.14",
"@types/react-virtualized": "9.21.22",
"@types/react-window": "1.8.5",
"@typescript-eslint/parser": "5.59.2",
"concurrently": "8.0.1",
"eslint": "8.42.0",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"re-resizable": "6.9.9",
"react": "18.2.0",
"react-content-loader": "6.2.1",
"react-cool-virtual": "0.7.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-merge-refs": "2.0.2",
"react-pull-to-refresh": "2.0.1",
"react-select": "5.7.3",
"react-virtualized": "9.22.5",
"react-virtuoso": "4.3.11",
"react-window": "1.8.9",
"rimraf": "5.0.0",
"rollup": "3.23.0",
"rollup-plugin-banner2": "1.2.2",
"storybook": "^7.0.18",
"ts-jest": "29.1.0",
"typedoc": "0.24.7",
"typedoc-plugin-markdown": "3.15.3",
"typescript": "5.1.3",
"virtua": "^0.4.0",
"vite": "4.3.9",
"wait-on": "7.0.1"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/virtua.git"
},
"keywords": [
"react",
"react-component",
"ui",
"headless",
"list",
"grid",
"table",
"flex",
"scrolling",
"virtual",
"virtualized",
"virtualization",
"infinite",
"windowing"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/virtua/issues"
},
"homepage": "https://github.com/inokawa/virtua#readme"
}