-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.05 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
{
"name": "all-risk-no-reward",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"catalog:generate": "node scripts/generate-challenge-catalog.mjs",
"catalog:check": "node scripts/generate-challenge-catalog.mjs --check",
"catalog:apply": "node scripts/generate-challenge-catalog.mjs --apply",
"dev": "vite --host 127.0.0.1",
"build": "node scripts/clean-sites-build.mjs && tsc -b && vite build && node scripts/generate-sw.mjs && node scripts/prepare-sites.mjs",
"check": "npm run catalog:check && npm run lint && npm run test && npm run build",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"preview": "vite preview --host 127.0.0.1 --port 4173 --strictPort",
"e2e": "npm run build && node scripts/run-e2e.mjs scripts/runtime-audit.mjs scripts/pwa-smoke.mjs scripts/bonus-smoke.mjs",
"e2e:visual": "npm run build && node scripts/run-e2e.mjs scripts/visual-smoke.mjs",
"sites:smoke": "node scripts/sites-worker-smoke.mjs",
"verify": "npm run check && npm run sites:smoke && npm run audit && node scripts/run-e2e.mjs scripts/runtime-audit.mjs scripts/pwa-smoke.mjs scripts/bonus-smoke.mjs",
"audit": "npm audit --audit-level=high",
"audit:prod": "npm audit --omit=dev --audit-level=moderate"
},
"dependencies": {
"@fontsource-variable/bricolage-grotesque": "^5.2.8",
"@fontsource-variable/petrona": "^5.2.8",
"@insforge/sdk": "1.4.4",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"playwright": "^1.61.1",
"postcss": "^8.4.49",
"tailwindcss": "3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.4.3",
"vitest": "^3.2.7"
}
}