-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.06 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
{
"version": "0.9.0",
"dependencies": {
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@react-pdf/renderer": "^4.3.0",
"@types/js-yaml": "^4.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-yaml": "^4.1.0",
"lucide-react": "^0.544.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"remeda": "^2.32.0",
"tailwind-merge": "^3.3.1",
"ts-pattern": "^5.8.0",
"zod": "^3.23.8"
},
"name": "cc-resume-manager",
"type": "module",
"private": false,
"license": "CC-BY-NC-4.0",
"scripts": {
"dev:vite": "vite",
"set-env": "bun scripts/set-env.ts",
"generate-pdf": "bun scripts/generate-pdf.ts",
"tailor-server": "bun scripts/tailor-server.ts",
"validate:all": "bun scripts/validate-schema.ts all",
"validate:metadata": "bun scripts/validate-schema.ts metadata",
"validate:resume": "bun scripts/validate-schema.ts resume",
"validate:job-analysis": "bun scripts/validate-schema.ts job-analysis",
"validate:cover-letter": "bun scripts/validate-schema.ts cover-letter",
"test": "bun test test/",
"test:watch": "bun test test/ --watch",
"test:coverage": "bun test test/ --coverage",
"tsc": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.14",
"@tailwindcss/vite": "^4.1.13",
"@types/bun": "latest",
"@types/node": "^24.6.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.13",
"tailwindcss-animate": "^1.0.7",
"vite": "^7.1.7"
},
"peerDependencies": {
"typescript": "^5"
}
}