-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "trimly",
"version": "1.0.0",
"description": "Trimly marketing UI migrated to Astro + React",
"scripts": {
"dev": "astro dev --host 0.0.0.0 --port 3000",
"build": "astro build",
"start": "node ./dist/server/entry.mjs",
"preview": "astro preview --host 0.0.0.0 --port 3000",
"lint": "astro check",
"db:migrate": "node ./scripts/migrate.mjs"
},
"keywords": [
"astro",
"react",
"tailwindcss"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@11.5.2",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.5.2",
"onFail": "download"
}
},
"type": "module",
"dependencies": {
"@astrojs/node": "^10.1.4",
"@astrojs/react": "^5.0.7",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.5",
"lucide-react": "^1.17.0",
"pg": "^8.16.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^3.8.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
}
}