forked from osl-vvce/zero-sama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 812 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
{
"name": "zero-sama",
"version": "3.0.2",
"description": "A custom OSL bot which helps with OSL weekly status reports of members.",
"main": "app.ts",
"scripts": {
"start": "node app.js",
"dev": "nodemon --exec ts-node app.ts",
"build": "tsc"
},
"keywords": ["telegram-bot"],
"author": "OSL <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/node-telegram-bot-api": "^0.50.2",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase": "^7.16.1",
"firebase-admin": "^9.0.0",
"node-telegram-bot-api": "^0.50.0"
}
}