-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.46 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
{
"name": "1976-election-sim",
"version": "2.7.13",
"description": "A playable historical strategy game about the Carter-Ford 1976 presidential campaign",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium",
"trailer:capture": "node scripts/capture-trailer.mjs",
"release:verify": "node scripts/verify-devlog-release.mjs",
"verify:static": "node scripts/verify-static-package.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@aribradshaw/devlog": "1.0.2",
"@fontsource-variable/source-sans-3": "^5.3.0",
"@fontsource-variable/source-serif-4": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"typescript": "^5.2.2",
"vite": "^8.2.1",
"vitest": "^4.1.11"
}
}