-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.02 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
{
"name": "samet-kasmer-portfolio",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Samet Kaşmer (Layellie) — kişisel yazılım geliştirici portfolyosu.",
"scripts": {
"dev": "vite",
"dev:site": "vite",
"dev:admin": "vite --config vite.admin.config.js",
"predev:worker": "node scripts/prepare-worker-dev.mjs",
"dev:worker": "wrangler dev --config worker/wrangler.jsonc",
"build": "npm run build:site",
"build:site": "npm run validate:content && vite build",
"build:admin": "vite build --config vite.admin.config.js",
"build:worker": "wrangler deploy --dry-run --config worker/wrangler.jsonc",
"typecheck:worker": "tsc -p worker/tsconfig.json --noEmit",
"check": "npm test && npm run test:worker && npm run typecheck:worker && npm run build:site && npm run build:admin && npm run build:worker",
"preview": "vite preview",
"test": "vitest run",
"test:worker": "vitest run --config vitest.worker.config.js",
"test:visual": "playwright test",
"test:watch": "vitest",
"validate:content": "node scripts/validate-content.mjs",
"migrate:content": "node scripts/migrate-content.mjs",
"deploy": "npm run build:site && gh-pages -d dist -b gh-pages"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"framer-motion": "^11.18.2",
"lucide-react": "^0.469.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.18.6",
"@cloudflare/workers-types": "^5.20260718.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.3.4",
"gh-pages": "^6.3.0",
"jsdom": "^29.1.1",
"tailwindcss": "^4.0.0",
"typescript": "^7.0.2",
"vite": "^6.4.3",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
}
}