forked from Comcast/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.01 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.01 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-data-grid",
"version": "7.0.14",
"license": "MIT",
"description": "Feature-rich and customizable data grid React component",
"keywords": [
"react",
"data grid"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Comcast/react-data-grid.git"
},
"homepage": "https://github.com/Comcast/react-data-grid#readme",
"bugs": "https://github.com/Comcast/react-data-grid/issues",
"type": "module",
"exports": {
"./lib/styles.css": "./lib/styles.css",
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"browser": "./lib/index.js",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"start": "vite serve --clearScreen false",
"preview": "vite preview",
"build:website": "vite build",
"build": "rolldown -c",
"test": "vitest run --project browser --project node --coverage.reportsDirectory='./coverage/test'",
"test:watch": "vitest watch --project browser --project node",
"visual": "vitest run --project visual --coverage.reportsDirectory='./coverage/visual'",
"visual:update": "vitest run --project visual --update",
"format": "biome format --write",
"check": "biome check --error-on-warnings",
"biome:ci": "biome ci --error-on-warnings",
"eslint": "eslint --max-warnings 0 --cache --cache-location .cache/eslint --cache-strategy content",
"eslint:fix": "node --run eslint -- --fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"typecheck": "tsc --build",
"prepublishOnly": "npm install && node --run build",
"postpublish": "git push --follow-tags origin HEAD"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"antd": "^5.27.0",
"clsx": "^2.0.0",
"react-refresh": "^0.17.0",
"react-window": "^1.8.11"
},
"dependencies": {
"antd": "^5.27.0",
"clsx": "^2.0.0",
"react-window": "^1.8.11"
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@biomejs/biome": "2.3.8",
"@eslint-react/eslint-plugin": "^2.3.12",
"@eslint/markdown": "^7.5.1",
"@faker-js/faker": "^10.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.6.2",
"@linaria/core": "^6.3.0",
"@types/lodash": "^4.17.20",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-oxc": "^0.3.0",
"@tanstack/react-router": "^1.132.31",
"@tanstack/router-plugin": "^1.132.31",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-istanbul": "^4.0.15",
"@vitest/eslint-plugin": "^1.5.1",
"clsx": "^2.1.1",
"ecij": "^0.3.0",
"eslint": "^9.39.1",
"@linaria/babel-preset": "^5.0.4",
"@linaria/core": "^6.3.0",
"@linaria/react": "^6.3.0",
"@linaria/vite": "^5.0.4",
"@vitest/browser": "^3.2.4",
"@wyw-in-js/babel-preset": "^0.7.0",
"@wyw-in-js/rollup": "^0.7.0",
"@wyw-in-js/vite": "^0.7.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-testing-library": "^7.13.5",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"lodash": "^4.17.21",
"playwright": "~1.57.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"postcss": "^8.5.2",
"prettier": "3.7.4",
"rolldown": "^1.0.0-beta.51",
"rolldown-plugin-dts": "^0.18.0",
"typescript": "~5.9.2",
"vite": "npm:rolldown-vite@^7.2.5",
"vitest": "^4.0.15",
"vitest-browser-react": "^2.0.2"
},
"peerDependencies": {
"react": "^18.0",
"react-dom": "^18.0"
},
"overrides": {
"vite": "$vite"
}
}