mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
- Removed the IS_MARKETING flag from app-config.ts to simplify configuration. - Updated the Sidebar component to always display the "AutoMaker" branding, removing conditional rendering based on the marketing flag. - Cleaned up package.json by removing the dev:marketing script and ensuring consistency in test commands. - Cleaned up package-lock.json by removing references to the marketing app and its dependencies.
28 lines
1.1 KiB
JSON
28 lines
1.1 KiB
JSON
{
|
|
"name": "automaker",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"libs/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=apps/app",
|
|
"dev:web": "npm run dev:web --workspace=apps/app",
|
|
"dev:electron": "npm run dev:electron --workspace=apps/app",
|
|
"dev:electron:debug": "npm run dev:electron:debug --workspace=apps/app",
|
|
"dev:electron:wsl": "npm run dev:electron:wsl --workspace=apps/app",
|
|
"dev:electron:wsl:gpu": "npm run dev:electron:wsl:gpu --workspace=apps/app",
|
|
"dev:server": "npm run dev --workspace=apps/server",
|
|
"dev:full": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
|
|
"build": "npm run build --workspace=apps/app",
|
|
"build:server": "npm run build --workspace=apps/server",
|
|
"build:electron": "npm run build:electron --workspace=apps/app",
|
|
"start": "npm run start --workspace=apps/app",
|
|
"start:server": "npm run start --workspace=apps/server",
|
|
"lint": "npm run lint --workspace=apps/app",
|
|
"test": "npm run test --workspace=apps/app",
|
|
"test:headed": "npm run test:headed --workspace=apps/app"
|
|
}
|
|
}
|