mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 18:12:31 +03:00
942e6c2305
- Closes https://github.com/enso-org/cloud-v2/issues/782 - `owner:` to do exact matches against owner username - `label:` (already existed) - `name:` to do exact matches against asset name (exact match; case insensitive; the glob character `*` matches 0 or more characters) - negated searches (`-owner:`, `-label:`, `-:` for negating keywords) - Related changes that were not explicitly requested: - add `no:`, `-no:`, `has:` and `-has:` to filter for assets that lack a specific field. Currently this only works for labels, because most (if not all) other fields cannot be empty. - `label:a,b,c` to OR results together. `label:a label:b` ANDs results as usual. - shift-click labels to add/remove it to the last search term as an OR - clicking labels now cycles them from: absent -> present (positive) -> present (negative) - Unrelated changes - Switches unit tests to use `vitest` # Important Notes Some other suggestions have been added in the original issue, but currently intentionally left out to avoid prematurely over-engineering this feature.
62 lines
1.9 KiB
JSON
62 lines
1.9 KiB
JSON
{
|
|
"name": "enso-dashboard",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"typecheck": "tsc",
|
|
"build": "tsx bundle.ts",
|
|
"dev": "vite",
|
|
"start": "tsx start.ts",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest",
|
|
"test:browsers": "npx --yes playwright install && npm run test:component && npm run test:e2e-and-log",
|
|
"test:component": "playwright test -c playwright-component.config.ts",
|
|
"test:e2e": "npx playwright test -c playwright-e2e.config.ts",
|
|
"test:e2e-and-log": "npm run test:e2e || npx tsx log-screenshot-diffs.ts"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.15",
|
|
"@sentry/react": "^7.74.0",
|
|
"esbuild": "^0.19.3",
|
|
"esbuild-plugin-time": "^1.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.7.0",
|
|
"validator": "^13.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
"@modyfi/vite-plugin-yaml": "^1.0.4",
|
|
"@playwright/experimental-ct-react": "^1.40.0",
|
|
"@playwright/test": "^1.40.0",
|
|
"@types/node": "^18.17.5",
|
|
"@types/react": "^18.0.27",
|
|
"@types/react-dom": "^18.0.10",
|
|
"@types/validator": "^13.11.7",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
|
"@typescript-eslint/parser": "^6.7.2",
|
|
"chalk": "^5.3.0",
|
|
"enso-authentication": "^1.0.0",
|
|
"enso-chat": "git://github.com/enso-org/enso-bot",
|
|
"enso-content": "^1.0.0",
|
|
"esbuild-plugin-inline-image": "^0.0.9",
|
|
"eslint": "^8.49.0",
|
|
"eslint-plugin-jsdoc": "^46.8.1",
|
|
"eslint-plugin-react": "^7.32.1",
|
|
"playwright": "^1.38.0",
|
|
"postcss": "^8.4.29",
|
|
"react-toastify": "^9.1.3",
|
|
"tailwindcss": "^3.2.7",
|
|
"tsx": "^3.12.6",
|
|
"typescript": "~5.2.2",
|
|
"vite": "^4.4.9",
|
|
"vitest": "^0.34.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"@esbuild/darwin-x64": "^0.17.15",
|
|
"@esbuild/linux-x64": "^0.17.15",
|
|
"@esbuild/windows-x64": "^0.17.15"
|
|
}
|
|
}
|