RESTfulMC/Frontend/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2024-04-15 13:16:08 -07:00
{
2024-04-15 15:00:47 -07:00
"name": "restfulmc-frontend",
"version": "1.0.0",
"author": "Braydon (Rainnny) <braydonrainnny@gmail.com>",
"description": "A simple, yet useful RESTful API for Minecraft utilizing Springboot.",
"homepage": "https://mc.rainnny.club",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-04-15 19:31:55 -07:00
"@heroicons/react": "^2.1.3",
2024-04-16 13:40:25 -07:00
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-label": "^2.0.2",
2024-04-15 15:00:47 -07:00
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.368.0",
"next": "14.2.1",
"next-plausible": "^3.12.0",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
2024-04-16 13:40:25 -07:00
"react-hook-form": "^7.51.3",
2024-04-16 15:27:56 -07:00
"restfulmc-lib": "^1.1.1",
2024-04-15 15:00:47 -07:00
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-04-16 06:59:20 -07:00
"eslint": "^8",
"eslint-config-next": "14.2.1",
2024-04-15 15:00:47 -07:00
"postcss": "^8",
2024-04-16 06:59:20 -07:00
"sleep-promise": "^9.1.0",
2024-04-15 15:00:47 -07:00
"tailwindcss": "^3.4.1",
2024-04-16 06:59:20 -07:00
"typescript": "^5"
2024-04-15 15:00:47 -07:00
}
2024-04-15 13:16:08 -07:00
}