forked from 1inch/shieldy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 930 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": "captcha_bot",
"version": "1.0.0",
"description": "Telegram anti-spam bot",
"main": "dist/index.js",
"repository": "https://github.com/backmeupplz/captcha_bot",
"author": "backmeupplz",
"license": "MIT",
"private": false,
"scripts": {
"distribute": "(yarn build-ts || true) && node dist/index.js",
"develop": "concurrently -i -k -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"
},
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/mongoose": "^5.5.16",
"@types/node": "^12.7.3",
"dotenv": "^8.1.0",
"mongoose": "^5.6.11",
"telegraf": "^3.33.3",
"typegoose": "^5.9.0",
"typescript": "^3.6.2"
},
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.19.1"
}
}