-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.15 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.15 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:pages": "tsc -b && VITE_BASE_URL=/Portf/ vite build",
"build:pages:help": "echo \"\\nTEMPLATE USERS: build:pages sets VITE_BASE_URL=/Portf/ for the showcase sub-path.\\nIf your repo has a different name, replace /Portf/ with /<your-repo-name>/ in this script\\nand in the VITE_BASE_URL env var in .github/workflows/github-pages.yml.\\nDeploying to a root domain? Use 'npm run build' instead (no sub-path needed).\\n\"",
"lint": "eslint .",
"preview": "vite preview --strictPort",
"css:watch": "postcss src/index.css --config . --output dist/style.css --watch",
"css:build": "postcss src/index.css --config . --output dist/style.css",
"test:e2e": "playwright test",
"verify:security-headers": "node scripts/verify-security-headers.mjs",
"data:to-json": "node src/tools/data-converter.mjs to-json",
"data:to-ts": "node src/tools/data-converter.mjs to-ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@iconify/json": "^2.2.465",
"@iconify/react": "^6.0.2",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"tmp": "^0.2.5",
"wrangler": "^4.84.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "7.1.0-canary-56824423-20260414",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"lychee": "^0.2.12",
"postcss": "^8.5.10",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.8",
"wait-on": "^9.0.5"
}
}