-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.67 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.67 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "votechain",
"type": "module",
"version": "0.0.1",
"description": "Cryptographic voter verification and ballot integrity for U.S. elections — open protocols, a browser-based proof of concept, and assurance playbooks.",
"license": "MIT",
"homepage": "https://absurdityindex.org/votechain",
"repository": {
"type": "git",
"url": "https://github.com/AbsurdityIndex/votechain.git"
},
"bugs": {
"url": "https://github.com/AbsurdityIndex/votechain/issues"
},
"author": "Absurdity Index",
"engines": {
"node": ">=20 <23",
"npm": ">=10"
},
"scripts": {
"dev": "astro dev",
"build": "astro build && npm run mermaid:build",
"preview": "astro preview",
"mermaid:build": "node scripts/build-mermaid-diagrams.mjs",
"export:diagrams": "npm run build && node scripts/export-diagram-images.mjs",
"export:diagrams:pi": "npm run build && node scripts/export-diagram-images.mjs pi",
"export:diagrams:all": "npm run build && node scripts/export-diagram-images.mjs all",
"test": "vitest run",
"test:watch": "vitest",
"e2e:setup": "node scripts/playwright-setup-walkthrough.mjs",
"e2e:setup:prod": "BASE_URL=https://absurdityindex.org/votechain/poc node scripts/playwright-setup-walkthrough.mjs",
"typecheck": "astro check --minimumFailingSeverity hint",
"deploy": "npm run deploy:prod",
"verify:mermaid": "npm run build && node scripts/verify-mermaid-diagrams.mjs",
"deploy:test": "npm run build && npx wrangler pages deploy dist --project-name votechain-test --branch main --commit-hash ${CI_COMMIT_SHA:-$(git rev-parse HEAD)}",
"deploy:prod": "npm run build && npx wrangler pages deploy dist --project-name votechain --branch main --commit-hash ${CI_COMMIT_SHA:-$(git rev-parse HEAD)}",
"deploy:workers": "npm run deploy:federal && npm run deploy:state && npm run deploy:oversight",
"deploy:today-cache": "npx wrangler deploy --config workers/today-in-congress/wrangler.toml",
"deploy:federal": "npx wrangler deploy --config workers/votechain-nodes/federal/wrangler.toml",
"deploy:state": "npx wrangler deploy --config workers/votechain-nodes/state/wrangler.toml",
"deploy:oversight": "npx wrangler deploy --config workers/votechain-nodes/oversight/wrangler.toml",
"ralph": "./scripts/ralph/ralph.sh",
"ralph:codex": "RALPH_MODEL=gpt-5.3-codex RALPH_BASE_URL=http://127.0.0.1:4321/votechain/poc/ RALPH_DISABLE_PLAYWRIGHT_MCP=1 ./scripts/ralph/ralph.sh --tool codex",
"ralph:claude": "./scripts/ralph/ralph.sh --tool claude",
"ralph:amp": "./scripts/ralph/ralph.sh --tool amp",
"ralph:overnight": "RALPH_TOOL=codex RALPH_MODEL=gpt-5.3-codex RALPH_BASE_URL=http://127.0.0.1:4321/votechain/poc/ RALPH_DISABLE_PLAYWRIGHT_MCP=1 ./scripts/ralph/overnight.sh 200"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/partytown": "^2.1.4",
"@astrojs/preact": "^4.1.3",
"@astrojs/sitemap": "^3.7.0",
"@noble/curves": "^2.0.1",
"@tailwindcss/vite": "^4.1.18",
"accessible-astro-components": "^5.1.2",
"astro": "^5.17.2",
"astro-auto-import": "^0.5.1",
"astro-expressive-code": "^0.41.6",
"astro-icon": "^1.1.5",
"astro-lighthouse": "^0.1.3",
"astro-robots": "^2.3.1",
"astro-seo": "^1.1.0",
"preact": "^10.28.3",
"rehype-external-links": "^3.0.0",
"tailwindcss": "^4.1.18"
},
"overrides": {
"lodash": ">=4.17.22"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@mermaid-js/mermaid-cli": "^11.12.0",
"danger": "^12.3.1",
"minimatch": "^9.0.5",
"playwright": "^1.56.1",
"puppeteer": "^23.11.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"zod": "^3.25.76"
}
}