-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 760 Bytes
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
{
"name": "vpn",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run index.ts",
"dev": "bun --watch run index.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@types/qrcode": "^1.5.6",
"prisma": "^7.4.0",
"tsx": "^4.21.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@grammyjs/conversations": "^2.1.1",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"dotenv": "^17.3.1",
"grammy": "^1.40.0",
"nanoid": "^5.1.6",
"pg": "^8.18.0",
"qrcode": "^1.5.4"
}
}