-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "makemeet",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro build && wrangler dev",
"astro": "astro",
"deploy": "astro build && wrangler deploy",
"cf-typegen": "wrangler types",
"test": "vitest",
"migrate:local": "wrangler d1 migrations apply makemeet-db --local",
"migrate:prod": "wrangler d1 migrations apply makemeet-db --remote",
"db:count:users": "wrangler d1 execute makemeet-db --local --command \"SELECT COUNT(*) AS cnt FROM users;\"",
"db:count:meetings": "wrangler d1 execute makemeet-db --local --command \"SELECT COUNT(*) AS cnt FROM meetings;\""
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.10",
"@astrojs/react": "^4.4.1",
"@fontsource/oswald": "^5.2.8",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"arctic": "^3.7.0",
"astro": "^5.15.1",
"bcrypt-ts": "^8.0.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"nanoid": "^5.1.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@types/clean-css": "^4.2.11",
"@types/node": "^24.9.1",
"clean-css": "^5.3.3",
"drizzle-kit": "^0.31.6",
"vitest": "^4.0.5",
"wrangler": "^4.45.0"
}
}