-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.04 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.04 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
52
53
54
55
56
{
"name": "miniblog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "DB_FILENAME=miniblog.dev.db astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:push:dev": "DB_FILENAME=miniblog.dev.db drizzle-kit push",
"db:push:prod": "DB_FILENAME=miniblog.db drizzle-kit push",
"db:reset": "rm -f miniblog.db miniblog.dev.db && DB_FILENAME=miniblog.db drizzle-kit push && DB_FILENAME=miniblog.dev.db drizzle-kit push",
"start": "bun scripts/prod-migrate.js && bun ./dist/server/entry.mjs",
"test": "vitest run",
"test:e2e": "DB_FILENAME=miniblog.dev.db NODE_ENV=development playwright test",
"test:all": "DB_FILENAME=miniblog.dev.db bun run test && bun run test:e2e",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,astro,html,css,json,md}\"",
"prepare": "husky"
},
"dependencies": {
"@astrojs/node": "^9.5.2",
"@astrojs/sitemap": "^3.7.0",
"@libsql/client": "^0.17.0",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@shikijs/markdown-it": "^3.22.0",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.17.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"lucia": "^3.2.2",
"markdown-it": "^14.1.0",
"oslo": "^1.2.1",
"satori": "^0.19.1",
"sharp": "^0.34.5",
"shiki": "^3.22.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@tailwindcss/typography": "^0.5.19",
"astro-eslint-parser": "^1.2.2",
"drizzle-kit": "^0.31.8",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"vitest": "^4.0.18"
}
}