-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"name": "crypthunt-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"dev:host": "astro dev --host",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"wrangler:preview": "wrangler pages dev ./dist",
"astro": "astro",
"test": "concurrently \"turso dev\" \"TURSO_DB_URL='http://127.0.0.1:8080' TURSO_DB_AUTH_TOKEN='' vitest\"",
"db": "bun run ./src/db/cli.ts",
"generate-messages": "bun run ./src/db/generate_messages.ts"
},
"dependencies": {
"@astrojs/check": "^0.5.9",
"@astrojs/cloudflare": "^9.1.0",
"@astrojs/node": "^8.2.5",
"@astrojs/svelte": "^5.2.0",
"@astrojs/tailwind": "^5.1.0",
"@bytemd/plugin-gfm": "^1.21.0",
"@libsql/client": "^0.5.6",
"@lucia-auth/adapter-drizzle": "^1.0.4",
"astro": "^4.5.5",
"drizzle-orm": "^0.30.2",
"drizzle-zod": "^0.5.1",
"easymde": "^2.18.0",
"kleur": "^4.1.5",
"lucia": "^3.1.1",
"marked": "^12.0.1",
"oslo": "^1.1.3",
"svelte": "^4.2.12",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/bun": "^1.1.2",
"@vincjo/datatables": "^1.14.5",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.20.14",
"lorem-ipsum": "^2.0.8",
"tsx": "^4.7.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0",
"wrangler": "^3.37.0"
}
}