-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.28 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
{
"name": "mly.fyi",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --port 3000",
"start": "astro dev",
"build": "astro check && astro build && npm run copy:templates",
"preview": "astro preview",
"astro": "astro",
"db:generate": "drizzle-kit generate:sqlite --config=drizzle.config.ts",
"db:migrate": "tsx ./scripts/db-migrate.ts",
"db:studio": "drizzle-kit studio --config=drizzle.config.ts",
"format:write": "biome format --write ./src",
"copy:templates": "mkdir -p ./dist/server/src && cp -r ./src/templates ./dist/server/src/templates"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/node": "^8.2.5",
"@astrojs/react": "^3.3.1",
"@astrojs/tailwind": "^5.1.0",
"@aws-sdk/client-cloudfront": "^3.569.0",
"@aws-sdk/client-ses": "^3.565.0",
"@aws-sdk/client-sns": "^3.565.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^5.32.1",
"@tanstack/react-query-devtools": "^5.32.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"astro": "^4.7.0",
"better-sqlite3": "^9.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"detect-browser": "^5.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"joi": "^17.13.0",
"jose": "^5.2.4",
"js-cookie": "^3.0.5",
"lucide-react": "^0.376.0",
"luxon": "^3.4.4",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redis": "^4.6.13",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.7.2",
"@types/better-sqlite3": "^7.6.10",
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.8",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.8",
"drizzle-kit": "^0.20.17",
"tsx": "^4.8.2"
}
}