-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.43 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.43 KB
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
{
"name": "@andrglo/react-window-grid",
"version": "0.4.1",
"description": "A react grid with synced column and row headers",
"repository": "https://github.com/andrglo/react-window-grid.git",
"main": "src",
"scripts": {
"build": "rollup -c",
"build:dev": "rollup -c -w",
"start": "webpack serve",
"test": "jest --bail --coverage --no-cache --testPathIgnorePatterns .history",
"test:report:coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"react",
"react-window",
"virtual",
"window",
"windowed",
"table",
"grid",
"spreadsheet"
],
"author": "Andre Gloria <andredagloria@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@faker-js/faker": "^10.1.0",
"@mui/material": "^7.3.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.7",
"@use-it/event-listener": "^0.1.7",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"coveralls": "^3.1.1",
"css-loader": "^7.1.2",
"dom-helpers": "^6.0.1",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jest": "^30.2.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^30.2.0",
"lodash.startcase": "^4.4.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-draggable": "^4.5.0",
"react-window": "1.8.11",
"rollup": "^4.53.3",
"style-loader": "^4.0.0",
"webpack": "^5.103.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "^5.2.2"
},
"files": [
"dist",
"src/*.js"
],
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-window": "1.8.11"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"engines": {
"node": ">20.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"jest-canvas-mock"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"unrs-resolver"
]
}
}