-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 KB
/
package.json
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
{
"name": "l2beat",
"private": true,
"license": "MIT",
"engines": {
"node": "^20.0.0"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "pnpm clean",
"build": "vite build",
"preview": "vite preview",
"start": "vite",
"format": "biome format .",
"format:fix": "biome format --write .",
"lint:fix": "biome check --formatter-enabled=false --write .",
"lint": "biome check --formatter-enabled=false .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^5.59.16",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.21.36",
"zod": "^3.23.8"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"vite": "^5.4.10",
"@biomejs/biome": "1.9.3",
"@types/node": "^20.11.16",
"typescript": "^5.5.3"
}
}