-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 761 Bytes
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
{
"name": "brandon-web",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "oxlint .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check": "bun run lint && bun run format:check && bun run build"
},
"dependencies": {
"lucide-react": "^1.14.0",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"typescript": "^6.0.3",
"vite": "^8.0.12"
},
"packageManager": "bun@1.3.11"
}