Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@nexadash/web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@nexadash/shared": "workspace:*",
|
|
"@nexadash/ui": "workspace:*",
|
|
"@nexadash/plugin-sdk": "workspace:*",
|
|
"@tanstack/react-query": "^5.59.0",
|
|
"@tanstack/react-query-devtools": "^5.59.0",
|
|
"axios": "^1.7.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.0",
|
|
"framer-motion": "^11.11.0",
|
|
"lucide-react": "^0.454.0",
|
|
"next": "^15.0.0",
|
|
"next-themes": "^0.3.0",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0",
|
|
"react-grid-layout": "^1.5.0",
|
|
"react-hook-form": "^7.53.0",
|
|
"tailwind-merge": "^2.5.0",
|
|
"zod": "^3.23.0",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/react-grid-layout": "^1.3.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^15.0.0",
|
|
"jsdom": "^25.0.0",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.6.0",
|
|
"vitest": "^2.1.0"
|
|
}
|
|
}
|