-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "subnetly",
"version": "0.1.0",
"description": "Self-hosted network and infrastructure operations platform for homelabs and small teams.",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/mannobeats/Subnetly",
"repository": {
"type": "git",
"url": "https://github.com/mannobeats/Subnetly.git"
},
"bugs": {
"url": "https://github.com/mannobeats/Subnetly/issues"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "prisma generate && tsc --noEmit",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "prisma db seed"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"@tailwindcss/postcss": "^4.2.0",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"prisma": "^7.4.1",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}