Same class of gap as the earlier WordPress fix: `ddev config --project-type=drupal*` only scaffolds DDEV's settings.php bridge, not Drupal core itself, so a freshly created Drupal project 404/403'd with nothing for the webserver to serve. The wizard's Drupal path now chains configure -> start -> composer create-project drupal/recommended-project -> composer require drush/drush -> drush site:install, with site name/admin fields shown only for that project type. Docroot defaults to `web` when Drupal is selected, matching what recommended-project's installer-paths expect. Also: Delete previously always left the project folder on disk with no way to remove it from the app, which surprised a user expecting it gone. Replaced the window.confirm with a proper modal that has an opt-in "also delete project files from disk" checkbox, defaulting to the previous (safe) behavior. Co-Authored-By: Claude Sonnet 5 <[email protected]>
73 lines
2.5 KiB
JSON
73 lines
2.5 KiB
JSON
{
|
|
"name": "aurora-dockside",
|
|
"version": "1.0.2",
|
|
"description": "A desktop GUI for managing DDEV local development environments",
|
|
"main": "./out/main/index.js",
|
|
"homepage": "http://localhost:3000/reaper/aurora-dockside",
|
|
"author": {
|
|
"name": "reaper",
|
|
"email": "[email protected]"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint --cache .",
|
|
"lint:fix": "eslint --cache --fix .",
|
|
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
|
|
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
|
|
"typecheck": "npm run typecheck:node && npm run typecheck:web",
|
|
"start": "electron-vite preview",
|
|
"dev": "electron-vite dev",
|
|
"build": "npm run typecheck && electron-vite build",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"build:unpack": "npm run build && electron-builder --dir",
|
|
"build:win": "npm run build && electron-builder --win",
|
|
"build:mac": "electron-vite build && electron-builder --mac",
|
|
"build:linux": "electron-vite build && electron-builder --linux",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:ui": "vitest --ui"
|
|
},
|
|
"dependencies": {
|
|
"@electron-toolkit/preload": "^3.0.2",
|
|
"@electron-toolkit/utils": "^4.0.0",
|
|
"@tanstack/react-query": "^5.101.4",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^1.28.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"zustand": "^5.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
|
|
"@electron-toolkit/eslint-config-ts": "^3.1.0",
|
|
"@electron-toolkit/tsconfig": "^2.0.0",
|
|
"@tailwindcss/vite": "^4.3.3",
|
|
"@testing-library/jest-dom": "^7.0.0",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/node": "^22.19.1",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"@vitest/coverage-v8": "^4.1.10",
|
|
"@vitest/ui": "^4.1.10",
|
|
"electron": "^39.2.6",
|
|
"electron-builder": "^26.0.12",
|
|
"electron-vite": "^5.0.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
"jsdom": "^30.0.1",
|
|
"prettier": "^3.7.4",
|
|
"react": "^19.2.1",
|
|
"react-dom": "^19.2.1",
|
|
"tailwindcss": "^4.3.3",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.2.6",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|