Chess_Engine / web /package.json
electro-sb's picture
Containerization and frontend backend communication issue fixed
d086f83
{
"name": "chess-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"axios": "^1.6.2",
"tailwindcss": "^3.3.5",
"postcss": "^8.4.31",
"autoprefixer": "^10.4.16"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"@vitejs/plugin-react": "^4.2.0",
"vitest": "^1.0.0",
"jsdom": "^23.0.0",
"@testing-library/jest-dom": "^6.1.0",
"@types/node": "^20.x.x"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit || true && vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest"
}
}