MIRROR/package.json

37 lines
877 B
JSON
Raw Normal View History

2025-02-24 15:03:29 +08:00
{
"name": "magic-mirror",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
2025-02-28 17:14:40 +08:00
"build": "next build --no-lint",
2025-02-24 15:03:29 +08:00
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2025-02-27 21:39:32 +08:00
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.5",
"@mui/material": "^6.4.5",
"@tanstack/react-query": "^5.66.9",
"next": "15.1.7",
2025-02-24 15:03:29 +08:00
"react": "^19.0.0",
"react-dom": "^19.0.0",
2025-02-27 21:39:32 +08:00
"react-use-websocket": "^4.13.0",
"swr": "^2.3.2",
"zod": "^3.24.2"
2025-02-24 15:03:29 +08:00
},
"devDependencies": {
2025-02-27 21:39:32 +08:00
"@eslint/eslintrc": "^3",
2025-02-24 15:03:29 +08:00
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
2025-02-27 21:39:32 +08:00
"autoprefixer": "^10.4.20",
2025-02-24 15:03:29 +08:00
"eslint": "^9",
"eslint-config-next": "15.1.7",
2025-02-27 21:39:32 +08:00
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5"
2025-02-24 15:03:29 +08:00
}
2025-02-27 21:39:32 +08:00
}