-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.72 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "synstarter",
"version": "1.1.0",
"type": "module",
"scripts": {
"astro": "astro",
"prebuild": "drizzle-kit generate --config ./db.config.ts",
"build": "astro build",
"clean": "rimraf ./.astro && rimraf ./dist && rimraf ./dev.db*",
"dev": "astro dev",
"lint": "eslint ./src",
"migrate": "drizzle-kit generate --config ./db.config.ts && drizzle-kit migrate --config ./db.config.ts",
"start": "node ./dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/mdx": "^4.3.12",
"@astrojs/node": "^9.5.1",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.6.0",
"@iconify-json/material-symbols": "^1.2.48",
"@iconify/tailwind4": "^1.2.0",
"@inox-tools/runtime-logger": "^0.7.0",
"@libsql/client": "^0.15.15",
"@nanostores/react": "^1.0.0",
"@react-hookz/web": "^25.2.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-form": "^1.26.0",
"@tanstack/react-query": "^5.90.11",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"astro": "^5.16.2",
"astro-favicons": "^3.1.5",
"babel-plugin-react-compiler": "1.0.0",
"chalk": "^5.6.2",
"clsx": "^2.1.1",
"daisyui": "^5.5.5",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.31.7",
"drizzle-orm": "^0.44.7",
"motion": "^12.23.24",
"nanostores": "^1.1.0",
"prettier": "^3.7.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"radash": "^12.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"prettier": "^3.7.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-packagejson": "^2.5.20",
"prettier-plugin-tailwindcss": "^0.7.1",
"react-compiler-runtime": "1.0.0",
"rimraf": "^6.1.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"@tailwindcss/oxide"
]
}
}