-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.71 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
{
"name": "ssot-registry-com",
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc --noEmit && vite build",
"check": "npm run build && tsx tests/site-discovery-smoke.mjs",
"preview": "vite preview --host 0.0.0.0",
"docker:build": "docker compose build ssot-registry-com",
"dns:plan": "npmctl plan desired-state/dns.yaml --owner ssot-registry-com",
"dns:apply": "npmctl apply desired-state/dns.yaml --owner ssot-registry-com",
"deploy:dry-run": "node scripts/deploy.mjs --dry-run",
"deploy": "docker compose -f docker-compose.yaml up -d --build --force-recreate --no-deps ssot-registry-com",
"dns:doctor": "npmctl dns doctor --provider namecheap",
"proxy:validate": "npmctl validate desired-state/proxy.yaml",
"proxy:plan": "npmctl plan desired-state/proxy.yaml --owner ssot-registry-com",
"proxy:apply": "npmctl apply desired-state/proxy.yaml --owner ssot-registry-com",
"proxy:target-check": "node scripts/validate-proxy-target.mjs"
},
"dependencies": {
"@mdwrk/markdown-renderer-react": "^1.2.1",
"@mdwrk/structured-data": "^0.2.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.1",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.1",
"vite": "^6.2.3"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"tsx": "^4.21.0",
"typescript": "~5.8.2"
}
}