Some checks failed
CI / test (push) Failing after 43s
- Introduced ESLint configuration files for both api and web packages to enforce coding standards. - Updated MinioService and TokenService to improve error handling and type definitions. - Refactored localStorage access in web components to use window.localStorage for consistency. - Enhanced ESLint rules in base configuration to improve code quality and maintainability.
27 lines
619 B
JSON
27 lines
619 B
JSON
{
|
|
"name": "web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"lint": "eslint . --max-warnings 0",
|
|
"check-types": "tsc --noEmit",
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@urql/core": "^5.1.1",
|
|
"@urql/solid": "^0.1.2",
|
|
"emoji-picker-element": "^1.26.1",
|
|
"graphql-ws": "^6.0.4",
|
|
"solid-js": "^1.9.5",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "*",
|
|
"@repo/typescript-config": "*",
|
|
"typescript": "5.8.2",
|
|
"vite": "^6.2.0",
|
|
"vite-plugin-solid": "^2.11.2"
|
|
}
|
|
}
|