mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 06:51:08 -05:00
Refactor code structure and remove redundant changes
This commit is contained in:
51
package.json
51
package.json
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user