-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 KB
/
package.json
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
{
"name": "cupdate",
"packageManager": "[email protected]",
"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.2.4",
"elkjs": "0.9.3",
"github-markdown-css": "5.8.1",
"marked": "15.0.7",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router-dom": "7.1.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/vite": "4.0.6",
"@types/dompurify": "3.2.0",
"@types/node": "22.13.4",
"@types/react": "19.0.9",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.5",
"globals": "15.15.0",
"prettier": "3.5.1",
"tailwindcss": "4.0.6",
"typescript": "5.7.3",
"vite": "6.1.0",
"vitest": "3.0.5"
}
}