This repository was archived by the owner on Dec 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.73 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.73 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
99
100
101
{
"name": "create-freedom-stack",
"type": "module",
"version": "1.1.0",
"description": "Create a new Freedom Stack project - A modern, type-safe web development stack using Astro, TypeScript, HTMX, Alpine.js, and more",
"author": "Cameron Pak",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cameronapak/freedom-stack.git"
},
"bugs": {
"url": "https://github.com/cameronapak/freedom-stack/issues"
},
"homepage": "https://freedom.faith.tools",
"keywords": [
"create-freedom-stack",
"freedom-stack",
"astro",
"typescript",
"htmx",
"alpinejs",
"tailwindcss",
"daisyui",
"starter",
"template"
],
"bin": {
"create-freedom-stack": "./scripts/create-freedom-stack.js"
},
"files": [
"src",
"public",
"scripts",
"db",
".env.example",
"astro.config.mjs",
"tailwind.config.mjs",
"tsconfig.json",
".prettierrc",
".nvmrc"
],
"scripts": {
"check:env": "bun ./scripts/check-env.js",
"dev": "bun run check:env && astro dev",
"dev:host": "bun run check:env && astro dev --host",
"start": "bun run check:env && astro dev",
"build": "astro check && astro build --remote",
"preview": "astro preview",
"format": "prettier -w .",
"packages:update": "bun update --interactive",
"db:setup": "bun run scripts/setup-turso.js",
"db:update-schemas": "astro db push --remote",
"host:deploy": "netlify deploy",
"host:login": "netlify login"
},
"dependencies": {
"@alpinejs/collapse": "^3.15.0",
"@alpinejs/intersect": "^3.15.0",
"@alpinejs/mask": "^3.15.0",
"@alpinejs/persist": "^3.15.0",
"@astrojs/alpinejs": "^0.4.9",
"@astrojs/check": "^0.9.5",
"@astrojs/db": "^0.18.0",
"@astrojs/netlify": "^6.5.13",
"@iconify-json/lucide": "^1.2.70",
"@iconify-json/lucide-lab": "^1.2.3",
"alpinejs": "^3.15.0",
"astro": "^5.14.7",
"astro-iconify": "^1.2.0",
"astro-seo": "^0.8.4",
"better-auth": "~1.2.12",
"better-sqlite3": "^11.10.0",
"cleye": "^1.3.4",
"drizzle-orm": "^0.40.1",
"htmx.org": "2.0.1",
"isomorphic-dompurify": "^2.29.0",
"marked": "^15.0.12",
"nodemailer": "^6.10.1",
"ora": "^8.2.0",
"trix": "^2.1.15"
},
"overrides": {
"jsdom": "^23.2.0",
"parse5": "^7.1.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.15",
"@types/alpinejs": "^3.13.11",
"@types/better-sqlite3": "^7.6.13",
"@types/nodemailer": "^6.4.20",
"daisyui": "^5.3.7",
"netlify-cli": "^19.1.7",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.1.15",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.0"
}