Adds src/app/table-filters.ts (DataRow type, FilterType, distinctValues, inferFilterType, matchesFilter, nextLockedRow) with 16 Vitest tests covering type inference thresholds, date-range encoding, and row-lock toggling. Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
849 B
JSON
38 lines
849 B
JSON
{
|
|
"name": "web-table",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons": "^6.2.5",
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"antd": "^6.4.3",
|
|
"exceljs": "^4.4.0",
|
|
"mssql": "^12.5.5",
|
|
"next": "16.2.9",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/mssql": "^12.3.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.9",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5",
|
|
"vitest": "^4.1.9"
|
|
}
|
|
}
|