-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "vibe-interviewing-monorepo",
"version": "0.0.0",
"private": true,
"description": "AI-era technical interviews — evaluate how engineers work with AI, not what they memorize",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"changeset": "changeset",
"release": "changeset publish"
},
"keywords": [
"interview",
"ai",
"claude",
"coding-interview",
"technical-interview",
"vibe-coding"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.28.2",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,js,json,md,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"turbo": "^2.8.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^3.2.4"
}
}