-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1012 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
36
37
38
39
{
"name": "test-bot",
"version": "0.1.3",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "vitest --config ./vitest.config.ts",
"docker:build": "docker build -t franelfers/tiger:0.0.9 .",
"docker:run": "docker run -dp 3000:3000 franelfers/tiger",
"docker:push": "docker push franelfers/tiger"
},
"keywords": [],
"author": "Francisco Elfers",
"license": "ISC",
"description": "",
"repository": {
"url": "https://github.com/FranElfers/tiger-bot"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.15.0",
"node-fetch": "^2.6.9",
"telegraf": "4.10.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.2",
"@types/node-fetch": "^2.6.2",
"concurrently": "^7.4.0",
"nodemon": "^2.0.20",
"typegram": "4.0.0",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
}
}