-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.61 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
{
"name": "monochrome-the-eclipse",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "TurnaboutHero",
"license": "SEE LICENSE IN README.md",
"scripts": {
"dev": "vite",
"check:asset-tooling": "node scripts/check-asset-tooling.mjs",
"optimize:assets": "node scripts/optimize-public-assets.mjs",
"check:text-integrity": "node scripts/check-text-integrity.mjs",
"check:exploration-route": "node scripts/check-exploration-route.mjs",
"check:stage3-content": "node scripts/check-stage3-content.mjs",
"check:stage3-assets": "node scripts/check-stage3-assets.mjs",
"check:pages-build": "vite build --base=/monochrome-the-eclipse/ && node scripts/prune-optimized-pngs.mjs && node scripts/prune-stage3-public-safe-assets.mjs && node scripts/prune-font-woff.mjs && node scripts/check-dist-budget.mjs && node scripts/check-pages-base.mjs && node scripts/check-no-e2e-hooks.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"validate:passives": "node scripts/run-passive-validation.mjs",
"check:release-assets": "node scripts/check-release-assets.mjs",
"check:dist": "node scripts/check-dist-budget.mjs",
"check:prototype-readiness": "node scripts/check-prototype-readiness.mjs",
"security:audit": "npm audit --audit-level=moderate",
"security:audit:full": "npm audit --audit-level=low",
"check": "npm run check:text-integrity && npm run check:stage3-content && npm run check:stage3-assets && npm run check:exploration-route && npm run typecheck && npm run test:run && npm run validate:passives && npm run check:release-assets && npm run build && npm run check:dist && node scripts/check-no-e2e-hooks.mjs",
"release:check": "npm run check:asset-tooling && npm run optimize:assets && npm run security:audit && npm run check",
"prototype:check": "npm run check:asset-tooling && npm run optimize:assets && npm run check && npm run check:prototype-readiness",
"build": "vite build && node scripts/prune-optimized-pngs.mjs && node scripts/prune-stage3-public-safe-assets.mjs && node scripts/prune-font-woff.mjs",
"preview": "vite preview",
"e2e": "node scripts/run-e2e-smoke.mjs"
},
"dependencies": {
"@fontsource/gowun-batang": "^5.2.8",
"framer-motion": "^11.2.13",
"immer": "^10.1.3",
"lucide-react": "^0.518.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zustand": "^5.0.6"
},
"devDependencies": {
"@types/node": "^22.14.0",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.15",
"tailwindcss": "^3.4.19",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.1.6"
}
}