forked from 1inch/shieldy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
49
{
"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": {
"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 --max-old-space-size=8000 dist/index.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/lodash": "^4.14.165",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.10",
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"mongoose": "^5.10.9",
"sharp": "^0.26.3",
"svg-captcha": "^1.4.0",
"tall": "^3.1.0",
"telegraf": "^3.38.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"
}
}