-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "punkpay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"worker": "npx tsx src/workers/index.ts",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:up:full": "docker compose up -d --build",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f app worker",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@next/swc-darwin-arm64": "^16.2.4",
"@prisma/client": "^6.19.2",
"@tanstack/react-query": "^5.90.21",
"@types/ws": "^8.18.1",
"argon2": "^0.44.0",
"bip32": "^5.0.1",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^7.0.1",
"bs58check": "^4.0.0",
"bullmq": "^5.71.0",
"dotenv": "^17.3.1",
"ecpair": "^3.0.1",
"ioredis": "^5.10.1",
"next": "^16.2.0",
"next-auth": "^5.0.0-beta.30",
"otpauth": "^9.5.0",
"qrcode": "^1.5.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"tiny-secp256k1": "^2.2.4",
"uuid": "^13.0.0",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9",
"eslint-config-next": "^16.2.0",
"prisma": "^6.19.2",
"tailwindcss": "^4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.4"
}
}