-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.22 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.22 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
{
"name": "portfolio-starter-astro",
"private": true,
"version": "1.0.0",
"description": "Modular Astro portfolio starter with optional remote data sync.",
"type": "module",
"scripts": {
"sync:remote-data": "node scripts/sync-remote-data.mjs",
"predev": "npm run sync:remote-data",
"prebuild": "npm run sync:remote-data",
"prebuild:pages": "npm run sync:remote-data",
"dev": "astro dev",
"build": "astro build",
"build:pages": "BASE_PATH=/Portf/ astro build",
"build:pages:help": "echo \"\\nTEMPLATE USERS: build:pages sets BASE_PATH=/Portf/ for GitHub Pages sub-path deploys.\\nIf your repo has a different name, replace /Portf/ with /<your-repo-name>/ in this script\\nand in the BASE_PATH env var in .github/workflows/github-pages.yml.\\nDeploying to a root domain? Use 'npm run build' instead (no sub-path needed).\\n\"",
"lint": "astro check",
"preview": "astro preview",
"test": "vitest run",
"test:e2e": "playwright test",
"verify:security-headers": "node scripts/verify-security-headers.mjs"
},
"dependencies": {
"@astrojs/react": "^4.4.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@iconify/json": "^2.2.472",
"@iconify/react": "^6.0.2",
"@tailwindcss/vite": "^4.1.8",
"astro": "^5.7.5",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"pg": "^8.20.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"tmp": "^0.2.5",
"wrangler": "^4.90.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@axe-core/playwright": "^4.11.3",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"autoprefixer": "^10.5.0",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"lychee": "^0.2.12",
"postcss": "^8.5.14",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.12",
"vitest": "^4.1.6",
"wait-on": "^9.0.10"
}
}