forked from 1inch/shieldy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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
44
45
46
47
48
{
"name": "captcha_bot",
"version": "1.0.0",
"description": "Telegram anti-spam bot",
"main": "dist/index.js",
"repository": "https://github.com/backmeupplz/shieldy",
"author": "backmeupplz",
"license": "MIT",
"private": false,
"scripts": {
"demon": "forever start -m10000 --uid \"safe\" ./dist/index.js",
"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",
"upload-translations": "node scripts/upload.js",
"download-translations": "node scripts/download.js && yarn prettier --single-quote --no-semi --write ./src/helpers/localizations.ts"
},
"dependencies": {
"@typegoose/typegoose": "^7.4.1",
"@types/axios": "^0.14.0",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.10",
"axios": "^0.20.0",
"convert-svg-to-png": "^0.5.0",
"dotenv": "^8.2.0",
"module-alias": "^2.2.2",
"mongoose": "^5.10.9",
"svg-captcha": "^1.4.0",
"tall": "^3.1.0",
"telegraf": "^3.37.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"concurrently": "^5.3.0",
"flat": "^5.0.2",
"nodemon": "^2.0.5",
"prettier": "^2.1.2"
},
"_moduleAliases": {
"@commands": "dist/commands",
"@helpers": "dist/helpers",
"@middlewares": "dist/middlewares",
"@models": "dist/models"
}
}