Files
gaokao-volunteer-system/package.json

29 lines
813 B
JSON
Raw Normal View History

{
"name": "gaokao-monorepo",
"version": "1.0.0",
"private": true,
"description": "高考志愿填报系统 monorepo",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,cjs,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,cjs,json,md,yml,yaml}\"",
"clean": "turbo run clean && rm -rf node_modules .turbo"
},
"devDependencies": {
"turbo": "^2.3.0",
"prettier": "^3.4.0",
"eslint": "^9.0.0",
"@types/node": "^20.0.0"
}
}