-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
96 lines (96 loc) · 2.63 KB
/
package.json
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
{
"name": "create-freedom-stack",
"type": "module",
"version": "1.0.11",
"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": "node scripts/check-env.js",
"dev": "npm run check:env && astro dev",
"dev:host": "npm run check:env && astro dev --host",
"start": "npm run check:env && astro dev",
"build": "astro check && astro build --remote",
"preview": "astro preview",
"format": "prettier -w .",
"packages:update": "npx npm-check-updates -u",
"db:setup": "node scripts/setup-turso.js",
"db:update-schemas": "astro db push --remote",
"host:deploy": "npx netlify deploy",
"host:login": "npx netlify login"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.8",
"@alpinejs/intersect": "^3.14.8",
"@alpinejs/mask": "^3.14.8",
"@alpinejs/persist": "^3.14.8",
"@astrojs/alpinejs": "^0.4.3",
"@astrojs/check": "^0.9.4",
"@astrojs/db": "^0.14.7",
"@astrojs/netlify": "^6.2.2",
"@iconify-json/lucide": "^1.2.27",
"@iconify-json/lucide-lab": "^1.2.3",
"alpinejs": "^3.14.8",
"astro": "^5.4.1",
"astro-iconify": "^1.2.0",
"astro-seo": "^0.8.4",
"better-auth": "1.2",
"better-sqlite3": "^11.8.1",
"cleye": "^1.3.4",
"drizzle-orm": "^0.40.0",
"htmx.org": "2.0.1",
"isomorphic-dompurify": "^2.22.0",
"marked": "^15.0.7",
"nodemailer": "^6.10.0",
"ora": "^8.2.0",
"trix": "^2.1.12"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.9",
"@types/alpinejs": "^3.13.11",
"@types/better-sqlite3": "^7.6.12",
"@types/nodemailer": "^6.4.17",
"daisyui": "^5.0.0-beta.9",
"netlify-cli": "^19.0.0",
"prettier": "^3.5.2",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.0.9",
"typescript": "^5.8.2"
}
}