-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 6.85 KB
/
Copy pathpackage.json
File metadata and controls
161 lines (161 loc) · 6.85 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
{
"name": "stealth-mail",
"private": true,
"sideEffects": false,
"type": "module",
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=24.0.0",
"bun": "1.3.14"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:dev": "vite build --mode development",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run tests/unit",
"test:security": "vitest run tests/unit/api/security tests/unit/api/security.regression.test.ts tests/unit/api/policy-routes.security.test.ts tests/unit/api/receipt-routes.security.test.ts tests/unit/api/contact-routes.test.ts",
"test:security:live": "vitest run tests/e2e/live-beta/security-isolation.test.ts",
"security:regression": "node scripts/security/run-regression.mjs",
"test:watch": "vitest tests/unit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:visual": "playwright test --config playwright.visual.config.ts",
"test:visual:update": "playwright test --config playwright.visual.config.ts --update-snapshots",
"test:load": "bun run tests/load/scenarios.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"local:setup": "powershell -ExecutionPolicy Bypass -File scripts/setup-local-env/setup.ps1",
"local:teardown": "powershell -ExecutionPolicy Bypass -File scripts/setup-local-env/teardown.ps1",
"local:setup:unix": "bash scripts/setup-local-env/setup.sh",
"local:teardown:unix": "bash scripts/setup-local-env/teardown.sh",
"generate:bindings": "node scripts/generate-contract-bindings.mjs",
"generate:openapi": "bun scripts/generate-openapi.ts",
"config:generate": "bun scripts/generate-wrangler-config.ts",
"config:check": "bun scripts/generate-wrangler-config.ts --check",
"migrations:dry-run": "node scripts/identity-migrate.mjs dry-run",
"migrations:forward": "node scripts/identity-migrate.mjs forward",
"migrations:rollback": "node scripts/identity-migrate.mjs rollback",
"migrations:integrity-check": "node scripts/identity-migrate.mjs integrity-check",
"backup:create": "node scripts/backup/backup.mjs create",
"backup:verify": "node scripts/backup/backup.mjs verify",
"backup:restore": "node scripts/backup/backup.mjs restore",
"backup:list": "node scripts/backup/backup.mjs list",
"backup:rehearsal": "node scripts/backup/backup.mjs rehearsal",
"ci:verify-drift": "node scripts/ci/verify-drift.mjs",
"ci:verify-versions": "node scripts/ci/verify-pinned-versions.mjs",
"ci:verify-wasm-hashes": "node scripts/ci/verify-wasm-hashes.mjs",
"ci:collect-hashes": "node scripts/ci/collect-artifact-hashes.mjs",
"ci:scan-artifacts": "node scripts/ci/scan-artifacts-for-secrets.mjs",
"ci:release-gate-summary": "node scripts/ci/release-gate-summary.mjs",
"test:beta:auth": "vitest run tests/unit/api/auth",
"test:beta:security": "vitest run tests/unit/crypto src/services/crypto/*.test.ts tests/unit/stellar/managed-wallet.test.ts tests/unit/api/security.regression.test.ts",
"test:beta:security:live": "vitest run tests/e2e/live-beta/crypto-misuse-evidence.test.ts",
"crypto:misuse-regression": "node scripts/crypto/run-misuse-regression.mjs",
"test:beta:migrations": "vitest run tests/unit/migrations",
"test:beta:live-data": "vitest run tests/e2e/live-beta/workflow2.test.ts -t \"local fake\"",
"test:beta:acceptance": "vitest run tests/unit/feedback/beta-feedback.test.ts tests/unit/beta-acceptance/acceptance-evidence.test.ts tests/unit/ci/beta-acceptance-gate.test.ts",
"beta-acceptance:session": "node scripts/beta-acceptance/run-session.mjs"
},
"overrides": {
"ws": "8.21.0",
"undici": ">=6.21.1"
},
"pnpm": {
"overrides": {
"ws": "8.21.0",
"undici": ">=6.21.1"
}
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.25.5",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.2.0",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-router": "1.170.16",
"@tanstack/react-start": "1.168.26",
"@tanstack/router-plugin": "1.168.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.3",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.38.0",
"input-otp": "^1.4.2",
"isomorphic-dompurify": "^3.19.0",
"lucide-react": "^0.575.0",
"react": "^19.2.0",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.71.2",
"react-resizable-panels": "^4.6.5",
"recharts": "^2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.3.4",
"vaul": "^1.1.2",
"vite-tsconfig-paths": "^6.0.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.2.0",
"@types/node": "^22.16.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react": "^5.0.4",
"esbuild": "^0.28.2",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fast-check": "^4.9.0",
"globals": "^15.15.0",
"jsdom": "^29.1.1",
"miniflare": "3.20241218.0",
"prettier": "^3.7.3",
"tsx": "^4.23.12",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.1.8"
}
}