-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.57 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
{
"name": "tigrbl-com",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build:content": "npm --prefix packages/site-content-pack run build",
"build": "npm run build:content && tsc --noEmit && vite build && npm run generate:static",
"check": "npm run build:content && npm --prefix packages/site-content-pack run test && tsc --noEmit",
"generate:static": "node scripts/generate-static.mjs",
"preview": "vite preview --host 0.0.0.0",
"docker:build": "docker compose build tigrbl-com",
"dns:plan": "npmctl plan desired-state/dns.yaml --owner tigrbl-com",
"dns:apply": "npmctl apply desired-state/dns.yaml --owner tigrbl-com",
"deploy:dry-run": "node scripts/deploy.mjs --dry-run",
"deploy": "docker compose -f docker-compose.yaml up -d --build --force-recreate --no-deps tigrbl-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 tigrbl-com",
"proxy:apply": "npmctl apply desired-state/proxy.yaml --owner tigrbl-com",
"proxy:target-check": "node scripts/validate-proxy-target.mjs"
},
"dependencies": {
"@mdwrk/lander-core": "^0.1.2",
"@mdwrk/lander-react": "^0.1.2",
"@mdwrk/lander-theme": "^0.1.4",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
}
}