- Converted web application from Next.js to SolidJS with Vite - Replaced React components with SolidJS components - Implemented GraphQL client using URQL - Added authentication, room, and chat components - Updated project structure and configuration files - Removed unnecessary Next.js and docs-related files - Added Docker support for web and API applications
24 lines
494 B
JSON
24 lines
494 B
JSON
{
|
|
"name": "web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@urql/core": "^5.1.1",
|
|
"graphql": "^16.8.1",
|
|
"graphql-ws": "^6.0.4",
|
|
"solid-js": "^1.8.15",
|
|
"@urql/solid": "^0.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.1.4",
|
|
"vite-plugin-solid": "^2.10.1"
|
|
}
|
|
}
|