forked from 1inch/shieldy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 867 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
{
"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 -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"yarn watch-ts\" \"yarn watch-js\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js"
},
"dependencies": {
"@types/dotenv": "^4.0.3",
"@types/node": "^10.12.0",
"dotenv": "^6.1.0",
"telegraf": "^3.25.0",
"typegoose": "^5.4.1",
"typescript": "^3.1.3"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.11"
}
}