-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "groupbot",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"webhook:setup": "node scripts/setup-webhook.js"
},
"dependencies": {
"@grammyjs/conversations": "^2.1.0",
"@headlessui/react": "^2.2.8",
"@heroicons/react": "^2.2.0",
"@noble/hashes": "^2.0.0",
"@noble/secp256k1": "^3.0.0",
"@prisma/client": "^6.16.1",
"@scure/base": "^2.0.0",
"@scure/btc-signer": "^2.0.1",
"bip322-js": "^3.0.0",
"bitcoinjs-lib": "^6.1.7",
"bitcoinjs-message": "^2.2.0",
"dotenv": "^17.2.2",
"express-rate-limit": "^8.1.0",
"fathom-client": "^3.7.2",
"grammy": "^1.38.2",
"next": "15.5.3",
"p-limit": "^7.1.1",
"prisma": "^6.16.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.19.14",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"jsdom": "^27.0.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.2.4"
}
}