forked from yangshun/tech-interview-handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·29 lines (29 loc) · 863 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "tech-interview-handbook",
"repository": "[email protected]:yangshun/tech-interview-handbook.git",
"author": "Yangshun Tay <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"ci": "yarn lint && yarn tsc",
"clean": "turbo clean",
"dev": "turbo dev --filter=portal... --filter=ui...",
"dev:ui": "turbo dev --filter=storybook... --filter=ui...",
"dev:website": "turbo dev --filter=website...",
"dev:all": "turbo dev --no-cache --parallel --continue",
"format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,md,mdx}\"",
"lint": "turbo lint",
"test": "turbo test",
"tsc": "turbo tsc"
},
"devDependencies": {
"prettier": "^2.7.1",
"turbo": "latest"
},
"packageManager": "[email protected]"
}