-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "cv-make",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"typecheck": "tsc --noEmit",
"test": "vitest run tests/unit",
"test:integration": "vitest run tests/integration --test-timeout 30000",
"test:all": "vitest run tests --test-timeout 30000"
},
"dependencies": {
"lucide-react": "1.7.0",
"next": "16.2.2",
"pino": "10.3.1",
"prom-client": "15.1.3",
"puppeteer": "24.40.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"sonner": "2.0.7",
"zod": "4.3.6",
"zustand": "5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@tailwindcss/postcss": "4.2.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.2.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"jsdom": "29.0.2",
"postcss": "8.5.8",
"tailwindcss": "4.2.2",
"typescript": "6.0.2",
"vitest": "4.1.3"
}
}