29 lines
1010 B
JSON
29 lines
1010 B
JSON
{
|
|
"name": "tanrouter-fastify-trpc-test",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev:frontend": "pnpm --filter frontend run dev",
|
|
"dev:backend": "pnpm --filter backend run dev",
|
|
"dev": "concurrently -k -p \"[{name}]\" -n \"Frontend,Backend\" -c \"yellow.bold,cyan.bold\" 'pnpm dev:frontend' 'pnpm dev:backend'",
|
|
"build": "pnpm --filter frontend run build && pnpm --filter backend run build:ts",
|
|
"start:frontend": "pnpm --filter frontend run serve",
|
|
"start:backend": "pnpm --filter backend run start",
|
|
"start": "concurrently -k -p \"[{name}]\" -n \"Frontend,Backend\" -c \"yellow.bold,cyan.bold\" 'pnpm start:frontend' 'pnpm start:backend'"
|
|
},
|
|
"packageManager": "pnpm@10.10.0",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.26.0",
|
|
"concurrently": "^9.1.2",
|
|
"eslint": "^9.26.0",
|
|
"globals": "^16.1.0",
|
|
"prettier": "^3.5.3",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.32.1"
|
|
}
|
|
}
|