-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 921 Bytes
/
package.json
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": "sdal-notifier-bot",
"version": "1.0.0",
"description": "Bot for broadcasting notifications",
"main": "index.js",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"simple-json-db": "^2.0.0",
"telegraf": "^3.36.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/node": "^14.6.4",
"nodemon": "^2.0.16",
"ts-node": "^10.8.1",
"typescript": "^3.8.2"
},
"scripts": {
"build": "yarn tsc",
"dev": "yarn nodemon src/main.ts",
"start": "node dist/main.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sdalab/sdal-notifier-bot.git"
},
"author": "Sergei Solovev (https://github.com/solovevserg/)",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/sdalab/sdal-notifier-bot/issues"
},
"homepage": "https://gitlab.com/sdalab/sdal-notifier-bot#readme"
}