-
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.46 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.46 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": "farsifix",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview:local": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:ox": "oxlint --type-aware --react-plugin --import-plugin --tsconfig tsconfig.app.json src",
"lint:all": "npm run lint && npm run lint:ox",
"typecheck": "tsc -b --pretty false",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"perf:metrics": "node scripts/perf-metrics.mjs",
"perf:compare": "node scripts/perf-compare.mjs",
"check:theme": "node scripts/check-dark-variant.mjs",
"view": "node scripts/view.mjs",
"deploy:pages": "npm run build && wrangler pages deploy dist --project-name farsifix --branch main"
},
"dependencies": {
"comlink": "4.4.2",
"jszip": "3.10.1",
"lucide-react": "0.563.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router-dom": "7.13.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@playwright/test": "1.58.1",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "19.2.11",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.3",
"oxlint": "1.43.0",
"oxlint-tsgolint": "^0.11.4",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-terminal": "1.4.0",
"vitest": "4.0.18",
"wrangler": "^4.63.0"
}
}