-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·27 lines (27 loc) · 698 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·27 lines (27 loc) · 698 Bytes
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
{
"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": "vp run --cache -r build",
"ci": "vp check && vp test && vp run --cache -r build",
"clean": "vp cache clean",
"dev:portal": "vp run --filter @tih/portal... dev",
"dev": "vp run --filter @tih/website... dev",
"prepare": "vp config"
},
"devDependencies": {
"vite-plus": "catalog:"
},
"engines": {
"node": "25.8.1",
"pnpm": "10.32.1"
},
"packageManager": "pnpm@10.32.1"
}