-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ipam",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "node scripts/dev.mjs",
"dev:up": "node scripts/dev.mjs",
"dev:web": "node node_modules/vite/bin/vite.js",
"dev:server": "tsx watch src/server/index.ts",
"dev:status": "node scripts/dev.mjs --status",
"dev:stop": "node scripts/dev.mjs --stop",
"prebuild": "tsr generate",
"build": "tsc -b && vite build",
"build:server": "node scripts/build-server.mjs",
"build:all": "npm run build && npm run build:server",
"pretypecheck": "tsr generate",
"typecheck": "tsc -b",
"typecheck:server": "tsc -p tsconfig.server.json --noEmit",
"test:server": "node --import tsx --test src/server/__tests__/*.test.ts",
"lint": "eslint .",
"test": "node scripts/_run-tests.mjs",
"preview": "vite preview",
"start": "node server-build/server/index.js",
"smoke": "tsx scripts/smoke.ts",
"clean-db-smoke": "tsx scripts/ops/clean-db-smoke.ts",
"backup": "tsx scripts/backup.ts",
"restore": "tsx scripts/restore.ts",
"backup:restore:test": "tsx scripts/ops/backup-restore-test.ts",
"docker:build": "docker build -t ipam:local .",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f ipam",
"docker:smoke": "npm run smoke",
"e2e": "playwright test",
"e2e:install": "playwright install chromium",
"e2e:report": "playwright show-report"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/react-query": "^5.62.7",
"@tanstack/react-router": "^1.95.0",
"@types/marked": "^5.0.2",
"better-sqlite3": "^12.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.30",
"konva": "^9.3.20",
"lucide-react": "^0.469.0",
"marked": "^18.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-konva": "^18.2.10",
"tailwind-merge": "^2.6.0",
"zod": "^3.25.76",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@hono/node-server": "^2.0.9",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.0.0",
"@tanstack/router-cli": "^1.95.0",
"@tanstack/router-plugin": "^1.95.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.9",
"drizzle-kit": "^0.31.10",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.23.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.64.0",
"vite": "^6.0.7",
"vitest": "^2.1.9"
}
}