-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 889 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
31
32
33
34
35
36
{
"name": "dev-utils",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "npm run build && wrangler dev",
"astro": "astro",
"generate-types": "wrangler types",
"deploy": "npm run build && wrangler deploy"
},
"dependencies": {
"@astrojs/alpinejs": "^1.0.0",
"@astrojs/cloudflare": "^14.1.1",
"@astrojs/sitemap": "^3.7.3",
"@tailwindcss/vite": "^4.3.2",
"@types/alpinejs": "^3.13.11",
"@vite-pwa/astro": "^1.2.0",
"alpinejs": "^3.15.12",
"astro": "^7.0.6",
"bcryptjs": "^3.0.3",
"dayjs": "^1.11.21",
"papaparse": "^5.5.4",
"tailwindcss": "^4.3.2",
"workbox-window": "^7.4.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/papaparse": "^5.5.2",
"wrangler": "^4.107.0"
}
}