-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.14 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
{
"name": "portfolio-os",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"gen": "node scripts/gen-sources.mjs && node scripts/gen-icons.mjs",
"predev": "npm run gen",
"dev": "next dev",
"prebuild": "npm run gen",
"build": "next build",
"start": "next start",
"lint": "oxlint --max-warnings=0",
"pretest": "npm run gen",
"test": "vitest run",
"ci": "npm run lint && npm test && npm run worker:check && npm run scan:secrets && npm run check:migrations && npm run build && npm run check:bundle",
"scan:secrets": "node scripts/scan-secrets.mjs",
"seed": "node scripts/seed-d1.mjs",
"preadmin:build": "npm run gen",
"admin:build": "vite build --config worker/admin-ui/vite.config.ts",
"preworker:check": "npm run gen",
"worker:check": "tsc -p worker --noEmit && tsc -p worker/admin-ui --noEmit",
"worker:dev": "npm run admin:build && wrangler dev",
"worker:migrate:local": "wrangler d1 migrations apply sumitos --local",
"worker:migrate": "wrangler d1 migrations apply sumitos --remote",
"worker:deploy": "npm run admin:build && wrangler deploy",
"ai:test": "uv run --directory ai pytest",
"ai:dev": "uv run --directory ai pywrangler dev",
"ai:deploy": "uv run --directory ai pywrangler deploy",
"e2e": "playwright test",
"e2e:admin": "node scripts/e2e-admin.mjs",
"smoke": "node scripts/smoke.mjs",
"check:migrations": "node scripts/check-migrations.mjs",
"check:bundle": "node scripts/check-bundle.mjs"
},
"dependencies": {
"next": "^16.3.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"simple-icons": "^16.28.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@cloudflare/workers-types": "^5.20260817.1",
"@playwright/test": "^1.62.1",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"oxlint": "^1.75.0",
"typescript": "~6.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10",
"wrangler": "^4.123.0"
},
"allowScripts": {
"workerd@1.20260811.1": true
}
}