-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "coding-challenges",
"version": "1.0.0",
"description": "This repository contains my solutions to various LeetCode problems, organized by difficulty and topic.",
"homepage": "https://github.com/pertrai1/coding-challenges#readme",
"bugs": {
"url": "https://github.com/pertrai1/coding-challenges/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pertrai1/coding-challenges.git"
},
"license": "ISC",
"author": "Rob Simpson",
"type": "module",
"main": "index.js",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky install",
"dev": "ts-node",
"build": "tsc",
"start": "node",
"run-ts": "ts-node",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"complexity": "node scripts/complexity-analyzer.js",
"complexity:leetcode": "node scripts/complexity-analyzer.js --leetcode",
"quality:check": "npm run lint && npm run format:check",
"quality:fix": "npm run lint:fix && npm run format",
"quality:full": "node scripts/quality-check.js"
},
"dependencies": {
"openai": "^4.0.0",
"pdf-parse": "^1.1.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "^4.0.13",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"markdownlint-cli": "^0.46.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.0",
"tsx": "^4.20.6",
"typescript": "^5.0.0",
"vitest": "^4.0.13"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"markdownlint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
}
}