-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 908 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 908 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
32
33
34
35
36
37
38
{
"name": "browser-wallet",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"fmt": "biome format . --write",
"fmt:check": "biome format .",
"lint": "biome check . --write --unsafe",
"lint:check": "biome check .",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"porto": "^0.2.37",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"viem": "^2.47.4",
"vite-plugin-mkcert": "^1.17.10"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"husky": "^9.1.7",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@7.1.14"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}
}