-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 KB
/
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
40
41
42
43
{
"name": "telegram-bot-crypto-daddy",
"version": "1.0.0",
"description": "telegram-bot-crypto-daddy",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/**/*.ts",
"server:staging": "npm run build && node dist/index.js",
"server:production": "export ENVIRONMENT=production && npm run build && node dist/index.js"
},
"author": "bobrosoft",
"license": "ISC",
"dependencies": {
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.5.12",
"dotenv": "^10.0.0",
"i18next": "^21.6.4",
"node-fetch": "^2.6.6",
"reflect-metadata": "^0.1.13",
"telegraf": "^4.10.0",
"tsyringe": "^4.6.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.4",
"tsc-watch": "^4.6.0"
},
"engines": {
"node": ">= 14.0.0"
}
}