-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "leetcode-ts",
"private": true,
"type": "module",
"packageManager": "pnpm@10.18.1",
"scripts": {
"new": "tsx packages/src/cli.ts new",
"test": "tsx packages/src/cli.ts test",
"test:watch": "tsx packages/src/cli.ts test --watch",
"build:data": "tsx packages/src/cli.ts build-data",
"build:site": "tsx packages/src/cli.ts build-site",
"build": "tsx packages/src/cli.ts build",
"dev": "tsx packages/src/cli.ts dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier -w .",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"concurrently": "^8.2.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^7.1.9",
"vitest": "^1.0.0"
},
"dependencies": {
"@types/inquirer": "^9.0.9",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"highlight.js": "^11.11.1",
"inquirer": "^9.2.0",
"marked": "^16.3.0",
"marked-code-format": "^1.1.6",
"marked-highlight": "^2.2.2",
"turndown": "^7.2.1",
"zod": "^4.0.0"
}
}