You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
748 B
28 lines
748 B
{
|
|
"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",
|
|
"clean": "turbo clean",
|
|
"dev": "turbo dev --filter=portal...",
|
|
"dev:ui": "turbo dev --filter=storybook...",
|
|
"dev:handbook": "turbo dev --filter=storybook...",
|
|
"dev:all": "turbo dev --no-cache --parallel --continue",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"lint": "turbo lint",
|
|
"test": "turbo test",
|
|
"tsc": "turbo tsc"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^2.7.1",
|
|
"turbo": "latest"
|
|
}
|
|
}
|