-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 890 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 890 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
32
33
34
35
{
"name": "p2palertbot",
"version": "0.2.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prisma:deploy": "prisma migrate deploy",
"dev:up": "docker compose up p2palertbot-db -d",
"dev:rm": "docker compose rm p2palertbot-db -s -f -v",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.7",
"prisma": "^4.5.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@grammyjs/i18n": "^1.0.1",
"@prisma/client": "^4.5.0",
"@types/express": "^4.17.14",
"axios": "^1.1.3",
"bolt11": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"nostr": "^0.2.8",
"nostr-tools": "^1.14.2",
"telegraf": "^4.10.0",
"winston": "^3.10.0"
}
}