-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.57 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
{
"name": "create-freedom-stack",
"type": "module",
"version": "1.0.8",
"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.1",
"@astrojs/check": "^0.9.4",
"@astrojs/db": "^0.14.5",
"@astrojs/netlify": "^6.0.1",
"@astrojs/tailwind": "^5.1.4",
"@iconify-json/lucide": "^1.2.20",
"@iconify-json/lucide-lab": "^1.2.3",
"alpinejs": "^3.14.8",
"astro": "^5.1.1",
"astro-iconify": "^1.2.0",
"astro-seo": "^0.8.4",
"better-auth": "^1.1.3",
"better-sqlite3": "^11.7.0",
"cleye": "^1.3.2",
"drizzle-orm": "^0.38.3",
"htmx.org": "2.0.1",
"isomorphic-dompurify": "^2.19.0",
"marked": "^15.0.4",
"ora": "^8.1.1",
"trix": "^2.1.12"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/alpinejs": "^3.13.11",
"@types/better-sqlite3": "^7.6.12",
"daisyui": "^4.12.22",
"netlify-cli": "^17.38.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}