-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
178 lines (178 loc) · 7.9 KB
/
Copy pathpackage.json
File metadata and controls
178 lines (178 loc) · 7.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "commons",
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "node build",
"predev": "node scripts/dev-up.mjs",
"dev": "NODE_OPTIONS=\"--dns-result-order=ipv4first --no-network-family-autoselection\" vite dev --host",
"build": "svelte-kit sync && vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"check:convex-queries": "node scripts/check-convex-query-efficiency.mjs",
"check:convex-authority": "tsc -p scripts/tsconfig.convex-authority.json && node scripts/verify-convex-public-function-authority.mjs",
"check:convex-work-budget": "node scripts/check-convex-server-work-budget.mjs",
"check:tree-self-contained": "node scripts/check-tree-self-contained.mjs",
"check:convex-paid-provider-egress": "node scripts/verify-convex-paid-provider-egress.mjs",
"check:convex-native-recurring-work": "node scripts/verify-convex-native-recurring-work.mjs",
"check:convex-native-usage-limit-config": "node scripts/verify-convex-native-usage-limits.mjs --environment production --config-only",
"check:release-hypergraph": "node scripts/verify-release-hypergraph.mjs",
"check:brutalist-attestation": "node scripts/verify-brutalist-attestation.mjs",
"verify:public-discovery-readiness": "node scripts/verify-public-discovery-readiness.mjs",
"verify:public-discovery-bootstrap": "tsx scripts/verify-public-discovery-bootstrap-completion.ts",
"verify:convex-contained-crons": "node scripts/verify-convex-contained-cron-deployments.mjs --environment all --expected-state paused --recovery-epoch \"${CONVEX_RECOVERY_EPOCH:?set CONVEX_RECOVERY_EPOCH}\" --recovery-epoch-min-ms \"${CONVEX_RECOVERY_EPOCH_MIN_MS:?set CONVEX_RECOVERY_EPOCH_MIN_MS}\"",
"ops:reconcile-pages-exposure": "node scripts/reconcile-cloudflare-pages-exposure.mjs --prune",
"ops:capture-convex-team-quota": "node scripts/capture-convex-team-usage-attestation.mjs",
"ops:sign-convex-team-quota": "node scripts/sign-convex-team-usage-attestation.mjs",
"ops:rearm-public-template-og": "node scripts/rearm-public-template-og-backfill.mjs",
"ops:audit-enums": "tsx scripts/audit-enum-conformance.ts",
"ops:normalize-schema": "tsx scripts/run-schema-normalizers.ts",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:strict": "prettier --check . && eslint . --max-warnings 0",
"test:unit": "vitest --run tests/unit --config=vitest.config.ts",
"test:integration": "vitest --run tests/integration --config=vitest.config.ts",
"test:all": "npm run test:run && npm run test:e2e",
"test:run": "vitest --run --config=vitest.config.ts",
"test:components": "vitest --run tests/unit/components --config=vitest.components.config.ts",
"test:coverage": "vitest --coverage --config=vitest.config.ts",
"test": "npm run test:run",
"test:reseed": "npm run test:run && npm run seed",
"test:e2e": "playwright test --config=playwright.config.ts",
"test:production": "ENABLE_BETA=false npm run test:run",
"test:beta": "ENABLE_BETA=true npm run test:run",
"test:ci": "npm run test:run && npm run test:e2e",
"ci": "npm run check:release-hypergraph && npm run check:convex-queries && npm run check:convex-authority && npm run check:convex-work-budget && npm run check:convex-paid-provider-egress && npm run check:convex-native-recurring-work && npm run check:convex-native-usage-limit-config && npm run test:unit && npm run test:components && npm run test:integration && npm run check && npm run build && npm run check:tree-self-contained",
"deploy": "npm run build && wrangler pages deploy .svelte-kit/cloudflare",
"deploy:manifest-control-gate": "wrangler deploy --config wrangler.public-discovery-manifest-gate.toml",
"deploy:manifest-control-cron": "wrangler deploy --config wrangler.public-discovery-manifest.toml",
"test:health": "npm run test:coverage && node -e \"console.log('Health reports generated in coverage/ directory')\"",
"test:smoke": "vitest --run tests/smoke --config=vitest.config.ts",
"test:smoke:live": "SMOKE_CWC_LIVE=true vitest --run tests/smoke --config=vitest.config.ts",
"test:congressional": "vitest --run tests/integration/congressional-delivery-e2e.test.ts --config=vitest.config.ts",
"test:e2e:voter": "vitest --run tests/unit/voter-protocol --config=vitest.config.ts",
"postinstall": "svelte-kit sync || true",
"seed": "npx convex run seed:seedAll",
"seed:agents": "npx tsx scripts/seed-with-agents.ts",
"seed:org": "npx tsx scripts/seed-org-templates.ts"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "10.0.1",
"@playwright/test": "1.59.1",
"@rollup/plugin-alias": "6.0.0",
"@sveltejs/adapter-cloudflare": "7.2.8",
"@sveltejs/kit": "2.70.1",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/postcss": "4.2.2",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.2.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/svelte": "5.3.1",
"@types/eslint": "9.6.1",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "25.6.0",
"@types/nodemailer": "8.0.0",
"@types/qrcode": "1.5.6",
"@types/sanitize-html": "2.16.1",
"@types/smtp-server": "3.5.13",
"@vitest/coverage-istanbul": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"autoprefixer": "10.5.0",
"convex-test": "^0.0.54",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-svelte": "3.17.0",
"fake-indexeddb": "6.2.5",
"globals": "17.5.0",
"jsdom": "29.0.2",
"mdsvex": "0.12.7",
"msw": "2.13.4",
"postcss": "8.5.10",
"prettier": "3.8.3",
"prettier-plugin-svelte": "3.5.1",
"prettier-plugin-tailwindcss": "0.7.2",
"svelte": "5.56.6",
"svelte-check": "4.4.6",
"tailwindcss": "4.2.2",
"tsx": "4.21.0",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
"vite": "8.1.5",
"vite-plugin-wasm": "3.6.0",
"vitest": "4.1.4"
},
"dependencies": {
"@aws-sdk/client-s3": "3.1032.0",
"@aws-sdk/client-sesv2": "3.1032.0",
"@aws-sdk/client-sts": "3.1032.0",
"@aztec/bb.js": "4.2.0",
"@codemirror/basic-setup": "0.20.0",
"@codemirror/lang-html": "6.4.11",
"@codemirror/state": "6.6.0",
"@codemirror/theme-one-dark": "6.1.3",
"@codemirror/view": "6.41.1",
"@floating-ui/dom": "1.7.6",
"@google/genai": "1.52.0",
"@lucide/svelte": "1.8.0",
"@mendable/firecrawl-js": "4.30.1",
"@near-js/accounts": "2.5.1",
"@near-js/crypto": "2.5.1",
"@noble/ciphers": "2.2.0",
"@node-rs/argon2": "2.0.2",
"@noir-lang/noir_js": "1.0.0-beta.20",
"@oslojs/crypto": "1.0.1",
"@oslojs/encoding": "1.1.0",
"@scure/base": "2.0.0",
"@sentry/sveltekit": "10.66.0",
"@simplewebauthn/browser": "13.3.0",
"@simplewebauthn/server": "13.3.0",
"@thumbmarkjs/thumbmarkjs": "1.7.7",
"@tiptap/core": "3.22.4",
"@tiptap/extension-link": "3.22.4",
"@tiptap/extension-text-align": "3.22.4",
"@tiptap/extension-underline": "3.22.4",
"@tiptap/pm": "3.22.4",
"@tiptap/starter-kit": "3.22.4",
"@turf/boolean-point-in-polygon": "7.3.4",
"@turf/intersect": "7.3.4",
"@turf/turf": "7.3.4",
"@voter-protocol/crypto": "0.1.4",
"@voter-protocol/noir-prover": "0.3.0",
"@zkpassport/poseidon2": "0.6.2",
"arctic": "3.7.0",
"best-effort-json-parser": "1.4.0",
"buffer": "6.0.3",
"cbor-web": "10.0.12",
"codemirror": "6.0.2",
"convex": "1.42.3",
"convex-sveltekit": "0.1.12",
"date-fns": "4.1.0",
"ethers": "6.17.0",
"exa-js": "2.11.0",
"h3-js": "4.4.0",
"idb": "8.0.3",
"jose": "6.2.2",
"jsonwebtoken": "9.0.3",
"libsodium-wrappers": "0.8.3",
"maplibre-gl": "5.23.0",
"marked": "18.0.3",
"near-api-js": "7.2.0",
"openai": "6.34.0",
"pako": "2.1.0",
"pmtiles": "4.4.1",
"qrcode": "1.5.4",
"sanitize-html": "2.17.6",
"satori": "0.26.0",
"sharp": "0.34.5",
"stripe": "22.0.2",
"wrangler": "4.112.0"
},
"overrides": {
"protobufjs": "7.6.5"
}
}