forked from brave/goggles-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 657 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 657 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
{
"name": "temp-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome lint .",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"tailwindcss": "^4.1.18",
"typescript": "^6.0.0-beta",
"vite": "^7.2.4"
},
"dependencies": {
"@preact/signals-react": "^2.0.1",
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}