-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 944 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 944 Bytes
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
{
"name": "app",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "trap 'bun dc:stop && exit 0' SIGINT; trap 'exit 0' SIGTERM; bun dc:start && bun start",
"start": "astro dev --port ${PORT:-4321} --host",
"build": "astro build",
"preview": "astro preview",
"validate": "bun run scripts/validate-templates.ts",
"astro": "astro",
"dc:start": "docker compose -f ./docker-compose.local.yml -f ./docker-compose.yml up -d --remove-orphans",
"dc:stop": "docker compose -f ./docker-compose.local.yml -f ./docker-compose.yml down --remove-orphans"
},
"dependencies": {
"@astrojs/node": "^9.5.4",
"@lucide/astro": "^0.575.0",
"astro": "^5.6.1",
"sharp": "^0.34.2",
"typesense": "^3.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "^1.3.9",
"gray-matter": "^4.0.3",
"tailwindcss": "^4.2.0",
"yaml": "^2.8.2"
}
}