- Added linting and type-checking scripts to package.json for api, web, and ui packages. - Updated ESLint configuration to ignore specific directories and added global window variable. - Modified TypeScript configuration for ui package to exclude turbo generators. - Refactored Button, Card, and Code components to use props for better readability and consistency.
28 lines
639 B
JSON
28 lines
639 B
JSON
{
|
|
"name": "web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"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"
|
|
}
|
|
}
|