Refactor code structure and remove redundant changes

This commit is contained in:
pacnpal
2025-08-26 13:19:04 -04:00
parent bf7e0c0f40
commit 831be6a2ee
151 changed files with 16260 additions and 9137 deletions

View File

@@ -1,51 +0,0 @@
{
"name": "thrillwiki-fullstack",
"version": "1.0.0",
"description": "ThrillWiki theme park and ride information system",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && lsof -ti :8000 | xargs kill -9; find . -type d -name \"__pycache__\" -exec rm -r {} +; uv run manage.py runserver",
"dev:frontend": "cd frontend && pnpm run dev",
"dev:full": "./shared/scripts/dev/start-all.sh",
"dev:setup": "./shared/scripts/dev/setup-dev.sh",
"build": "cd frontend && pnpm run build",
"build:staging": "cd frontend && pnpm run build --mode staging",
"build:production": "cd frontend && pnpm run build --mode production",
"build:frontend": "./shared/scripts/build/build-frontend.sh",
"build:all": "./shared/scripts/build/build-all.sh",
"build:clean": "./shared/scripts/build/build-all.sh --clean",
"preview": "cd frontend && pnpm run preview",
"install:all": "cd backend && uv sync && cd ../frontend && pnpm install",
"setup": "./shared/scripts/dev/setup-dev.sh",
"type-check": "cd frontend && pnpm run type-check",
"lint": "cd frontend && pnpm run lint",
"lint:fix": "cd frontend && pnpm run lint",
"format": "cd frontend && pnpm run format",
"test": "concurrently \"npm run test:backend\" \"npm run test:frontend\"",
"test:backend": "cd backend && uv run python -m pytest",
"test:frontend": "cd frontend && pnpm run test",
"test:full": "./shared/scripts/build/build-all.sh --no-checks",
"deploy": "./shared/scripts/deploy/deploy.sh",
"deploy:dev": "./shared/scripts/deploy/deploy.sh dev",
"deploy:staging": "./shared/scripts/deploy/deploy.sh staging",
"deploy:production": "./shared/scripts/deploy/deploy.sh production",
"docs:api": "echo 'API documentation available at: shared/docs/api/README.md'",
"docs:dev": "echo 'Development workflow available at: shared/docs/development/workflow.md'",
"clean": "rm -rf frontend/dist backend/staticfiles deploy build-report* deployment-report*",
"clean:all": "npm run clean && rm -rf backend/.venv frontend/node_modules"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"theme-park",
"roller-coaster",
"django",
"vue",
"typescript",
"pinia"
],
"author": "ThrillWiki Team",
"license": "MIT"
}