-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 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
{
"name": "cupdate",
"packageManager": "yarn@4.6.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc --noEmit && vite build",
"dev": "vite",
"test": "vitest run --coverage.enabled --coverage.all --coverage.reportOnFailure --coverage.reportsDirectory \"$PWD/coverage\" --coverage.reporter html",
"lint": "biome ci --no-errors-on-unmatched . && prettier --check '**/*.{md,yml,yaml}'",
"format": "biome check --write --no-errors-on-unmatched . && prettier --write '**/*.{md,yml,yaml}'"
},
"dependencies": {
"dompurify": "3.3.3",
"elkjs": "0.11.1",
"github-markdown-css": "5.9.0",
"marked": "17.0.5",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router-dom": "7.13.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@tailwindcss/vite": "4.2.2",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "4.1.2",
"globals": "17.4.0",
"prettier": "3.8.1",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"vite": "8.0.3",
"vitest": "4.1.2"
}
}