-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
102 lines (102 loc) · 3.45 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
{
"name": "react-fluid-table",
"version": "1.2.4",
"description": "A React table inspired by @tanstack/react-virtual",
"author": "Mckervin Ceme <mckervinc@live.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mckervinc/react-fluid-table.git"
},
"homepage": "https://mckervinc.github.io/react-fluid-table",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "index.d.ts",
"keywords": [
"react",
"reactjs",
"table",
"window",
"fluid",
"virtualized",
"list",
"scrolling",
"frozen"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"clean": "rm -rf dist",
"build": "rm -rf dist ||: && rollup -c --environment BUILD:production && rm -rf dist/*.es.css",
"start": "rollup -c -w --environment BUILD:development",
"site:build": "cd example && yarn install && yarn build"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.26.10",
"@babel/plugin-external-helpers": "^7.25.9",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-do-expressions": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-proposal-function-bind": "^7.25.9",
"@babel/plugin-proposal-function-sent": "^7.25.9",
"@babel/plugin-proposal-pipeline-operator": "^7.26.7",
"@babel/plugin-proposal-throw-expressions": "^7.25.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-json-strings": "^7.25.9",
"@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^19.0.1",
"cross-env": "^7.0.3",
"eslint": "8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"gh-pages": "^6.3.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"react": "^18.2.0",
"rollup": "^4.36.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "^5.8.2"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.4",
"react-resize-detector": "^12.0.2"
},
"volta": {
"node": "18.18.0",
"yarn": "1.22.22"
}
}