生产管理系统前端 - 环境变量配置

This commit is contained in:
2025-10-28 14:11:53 +08:00
parent 4aae686264
commit 3286d4366a
10 changed files with 772 additions and 15 deletions

View File

@@ -5,19 +5,17 @@
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"test:ts": "tsc --noEmit",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"scripts:setup": "node scripts/setup-dev-tools.js",
"scripts:enable": "node scripts/setup-dev-tools.js --enable",
"scripts:disable": "node scripts/setup-dev-tools.js --disable",
"api:generate": "node scripts/generate-api.cjs",
"deploy": "node scripts/deploy.js"
"deploy": "node scripts/deploy.js",
"build:dev": "node scripts/build.cjs dev",
"build:test": "node scripts/build.cjs test",
"build:uat": "node scripts/build.cjs uat",
"build:prod": "node scripts/build.cjs prod"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",