Files
tech-interview-handbook/package.json
2026-03-20 14:35:32 +08:00

33 lines
786 B
JSON
Executable File

{
"name": "tech-interview-handbook",
"repository": "git@github.com:yangshun/tech-interview-handbook.git",
"author": "Yangshun Tay <tay.yang.shun@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"ci": "pnpm lint && pnpm tsc",
"clean": "turbo clean",
"dev:portal": "turbo dev --filter=@tih/portal...",
"dev": "turbo dev --filter=@tih/website...",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "turbo lint",
"test": "turbo test",
"tsc": "turbo tsc"
},
"devDependencies": {
"oxfmt": "^0.41.0",
"turbo": "2.8.20"
},
"engines": {
"node": "25.8.1",
"pnpm": "10.32.1"
},
"packageManager": "pnpm@10.32.1"
}