generated from Borodutch/telegram-bot-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "viz-quiz-bot",
"version": "1.0.0",
"description": "Crypto quizzes",
"main": "dist/app.js",
"repository": "https://github.com/viz-cx/viz-quiz-bot",
"author": "Vladimir Babin <vovababin@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"distribute": "yarn build-ts && node dist/app.js",
"develop": "concurrently -k -i -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js"
},
"devDependencies": {
"@types/mongoose": "^5.10.18",
"@types/node": "^16.10.2",
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"@typegoose/typegoose": "^7.6.1",
"dotenv": "^10.0.0",
"module-alias": "^2.2.2",
"mongoose": "5.10.18",
"telegraf": "^4.4.2",
"telegraf-i18n": "^6.6.0",
"typescript": "^4.3.2",
"viz-js-lib": "^0.10.0"
},
"_moduleAliases": {
"@": "dist"
}
}