RESTfulMC/Frontend/package.json

73 lines
2.1 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.",
2024-04-16 19:59:16 -07:00
"homepage": "https://restfulmc.cc",
2024-04-18 17:14:13 -07:00
"license": "MIT",
2024-04-15 15:00:47 -07:00
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
2024-04-20 22:01:52 -07:00
"overrides": {
2024-04-20 23:20:07 -07:00
"remark-mdx": "3.0.0",
2024-04-20 22:01:52 -07:00
"unified": "11.0.4",
"remark-parse": "11.0.0",
"mdast-util-frontmatter": "2.0.1"
},
2024-04-15 15:00:47 -07:00
"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",
2024-04-19 22:33:33 -07:00
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.2",
2024-04-17 17:37:49 -07:00
"@radix-ui/react-context-menu": "^2.1.5",
2024-04-21 15:14:16 -07:00
"@radix-ui/react-dialog": "^1.0.5",
2024-04-16 13:40:25 -07:00
"@radix-ui/react-label": "^2.0.2",
2024-04-17 21:31:45 -07:00
"@radix-ui/react-navigation-menu": "^1.1.4",
2024-04-20 22:01:52 -07:00
"@radix-ui/react-scroll-area": "^1.0.5",
2024-04-17 20:34:13 -07:00
"@radix-ui/react-select": "^2.0.0",
2024-04-17 21:31:45 -07:00
"@radix-ui/react-separator": "^1.0.3",
2024-04-15 15:00:47 -07:00
"@radix-ui/react-slot": "^1.0.2",
2024-04-17 17:37:49 -07:00
"@radix-ui/react-toast": "^1.1.5",
2024-04-15 15:00:47 -07:00
"@radix-ui/react-tooltip": "^1.0.7",
2024-04-19 22:33:33 -07:00
"@types/mdx": "^2.0.13",
2024-04-21 17:55:42 -07:00
"@types/react-syntax-highlighter": "^15.5.11",
2024-04-15 15:00:47 -07:00
"class-variance-authority": "^0.7.0",
2024-04-17 17:37:49 -07:00
"clipboard-copy": "^4.0.1",
2024-04-15 15:00:47 -07:00
"clsx": "^2.1.0",
2024-04-21 16:51:30 -07:00
"cmdk": "^1.0.0",
"lucide-react": "^0.376.0",
2024-04-20 22:01:52 -07:00
"moment": "^2.30.1",
"next": "14.2.3",
2024-04-15 15:00:47 -07:00
"next-plausible": "^3.12.0",
"next-themes": "^0.3.0",
"react": "^18",
2024-04-17 14:34:07 -07:00
"react-countup": "^6.5.3",
2024-04-15 15:00:47 -07:00
"react-dom": "^18",
2024-04-16 13:40:25 -07:00
"react-hook-form": "^7.51.3",
2024-04-21 17:55:42 -07:00
"react-syntax-highlighter": "^15.5.0",
2024-04-19 22:33:33 -07:00
"remark-gfm": "^4.0.0",
"remote-mdx": "^0.0.7",
"restfulmc-lib": "^1.1.4",
2024-04-20 15:07:13 -07:00
"shadcn-ui": "0.8.0",
2024-04-19 22:45:55 -07:00
"sharp": "^0.33.3",
2024-04-17 21:31:45 -07:00
"sonner": "^1.4.41",
2024-04-15 15:00:47 -07:00
"tailwind-merge": "^2.2.2",
2024-04-20 23:20:07 -07:00
"tailwindcss-animate": "^1.0.7"
2024-04-15 15:00:47 -07:00
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-04-18 17:12:25 -07:00
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
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
}