-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "ace_website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"db:push": "drizzle-kit push:sqlite",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate:sqlite",
"db:run": "turso dev --db-file lethimcook.db",
"format": "npx prettier --write ."
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/react": "^3.6.2",
"@astrojs/tailwind": "^5.1.1",
"@astrojs/vercel": "^7.8.1",
"@auth/drizzle-adapter": "^1.4.2",
"@iconify-json/carbon": "^1.2.1",
"@libsql/client": "^0.10.0",
"@nanostores/react": "^0.7.3",
"astro": "^4.15.9",
"astro-icon": "^1.1.1",
"auth-astro": "^4.1.2",
"cloudinary": "^2.4.0",
"drizzle-orm": "^0.33.0",
"gsap": "^3.12.5",
"nanostores": "^0.11.3",
"parallax-js": "^3.1.0",
"react-quill": "^2.0.0",
"sonner": "^1.5.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.0",
"@types/parallax-js": "^3.1.3",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"drizzle-kit": "^0.24.2",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}