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
24 lines
612 B
JSON
24 lines
612 B
JSON
{
|
|
"name": "nexadash",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Modern, self-hosted plugin-based dashboard for Homelab, server and infrastructure services",
|
|
"scripts": {
|
|
"dev": "pnpm -r --parallel dev",
|
|
"build": "pnpm -r build",
|
|
"test": "pnpm -r test",
|
|
"lint": "pnpm -r lint",
|
|
"format": "pnpm -r format",
|
|
"db:upgrade": "pnpm --filter @nexadash/api db:upgrade",
|
|
"db:seed": "pnpm --filter @nexadash/api db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.3.3",
|
|
"typescript": "^5.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"pnpm": ">=9.0.0"
|
|
}
|
|
}
|