-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "zerorelay",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"dev:worker": "npm run dev --prefix workers/signaling",
"dev:lan": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check --write src/",
"lint:worker": "npm run typecheck --prefix workers/signaling",
"format": "biome format --write src/",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run build",
"prepare": "husky"
},
"dependencies": {
"dexie": "^4.0.11",
"next": "^15.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^22.15.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"tailwindcss": "^4.1.6",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{ts,tsx,json}": ["biome check --write"],
"!package-lock.json": ""
}
}