-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 647 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 647 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
{
"name": "vite-playground",
"private": true,
"type": "module",
"scripts": {
"lint": "tsc --noEmit",
"dev": "bun --bun vite ./src --config ./vite.config.ts",
"build": "bun --bun vite build ./src --outDir ../dist --config ./vite.config.ts --emptyOutDir",
"preview": "bun --bun vite preview"
},
"dependencies": {
"@tailwindcss/vite": "workspace:^",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "workspace:^"
},
"devDependencies": {
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"bun": "^1.2.3",
"vite": "catalog:"
}
}