-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.66 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
{
"name": "signer-multisig-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "DATABASE_URL=${DATABASE_URL:-postgresql://dummy:dummy@localhost:5432/dummy} prisma generate",
"postbuild": "tsx scripts/postbuild-deploy.ts || echo 'Post-build tasks skipped (non-fatal)'",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:seed": "tsx scripts/seed-admin.ts",
"import:json": "tsx scripts/import-from-json.ts",
"cleanup:wallets": "tsx scripts/cleanup-orphaned-wallets.ts",
"cleanup:signer-wallets": "tsx scripts/remove-signer-addresses-from-wallets.ts",
"cleanup:signers": "tsx scripts/cleanup-and-reimport-signers.ts",
"cleanup:invalid-signers": "tsx scripts/cleanup-invalid-signer-addresses.ts",
"diagnose:signers": "tsx scripts/diagnose-production-signers.ts",
"check:missing": "tsx scripts/check-missing-entries.ts",
"test:setup": "bash scripts/test-setup.sh"
},
"dependencies": {
"@prisma/client": "^6.19.2",
"bcryptjs": "^3.0.3",
"cookie": "^1.1.1",
"ethers": "^6.16.0",
"next": "16.1.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"prisma": "^6.19.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}