From 523e115906402f35e80b8bf3b775a20e8795736d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E7=A0=81=E7=8C=BF?= Date: Fri, 19 Sep 2025 02:20:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E6=A0=B9=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front-end/package.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 front-end/package.json diff --git a/front-end/package.json b/front-end/package.json new file mode 100644 index 0000000..b2c6454 --- /dev/null +++ b/front-end/package.json @@ -0,0 +1,15 @@ +{ + "name": "front-end", + "version": "1.0.0", + "description": "", + "keywords": [], + "author": "", + "license": "ISC", + "scripts": { + "init": "pnpm install", + "all": "concurrently \"pnpm run build\" \"pnpm run dev:main\"", + "build": "pnpm --parallel --filter app-product --filter app-shared dep", + "dev:main": "pnpm --filter main-app dev", + "build:main": "pnpm --filter main-app dep" + } +}