-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 942 Bytes
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
{
"name": "codehub",
"version": "3.0.0",
"description": "CodeHub — Wilson.E Portfolio",
"private": true,
"scripts": {
"start": "cd backend && node server.js",
"build": "node scripts/build.js",
"wire": "node scripts/wire-build.js",
"deploy:assets": "npm run build && npm run wire",
"test": "playwright test",
"test:ui": "playwright test --ui",
"audit:project": "node scripts/audit-project.js",
"audit:syntax": "node scripts/syntax-check.js",
"audit:refs": "node scripts/audit-refs.js",
"audit:inline": "node scripts/check-inline.js",
"update:apk": "node scripts/update-apk-config.js",
"lighthouse": "node scripts/lighthouse-audit.js",
"check:install": "node scripts/audit-project.js --install",
"check:health": "node scripts/audit-project.js --health"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"esbuild": "^0.28.2",
"lighthouse": "^13.4.1"
}
}