-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 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
38
39
40
41
42
43
44
45
46
47
{
"name": "syllabus",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.10.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"typecheck": "tsc -b --noEmit",
"preview": "vite preview",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "vitest run",
"test:ui": "vitest --ui",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,json}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"@mantine/core": "^9.2.1",
"@mantine/hooks": "^9.2.1",
"@tabler/icons-react": "^3.44.0",
"lz-string": "^1.5.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router": "^7.6.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/lz-string": "^1.3.34",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/ui": "^4.1.7",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "~6.0.2",
"vite": "^8.0.12",
"vitest": "^4.1.7"
}
}