-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
50
51
{
"name": "spamwatchbot",
"private": true,
"version": "0.2.1",
"description": "Reporting and information bot for [SpamWatch](https://t.me/SpamWatch). See me in action at https://t.me/SpamWatchHelpBot.",
"main": "dist/main.js",
"dependencies": {
"@grammyjs/hydrate": "^1.0.3",
"@grammyjs/parse-mode": "^1.4.0",
"basic-scene": "^0.2.0",
"dedent": "^0.7.0",
"grammy": "^1.4.0",
"i18next": "^21.4.2",
"i18next-fs-backend": "^1.1.1",
"redis": "^4.3.1",
"spamwatch-ts": "^1.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"typescript-deno-plugin": "^1.31.0",
"winston": "^3.3.3",
"winston-transport-sentry-node": "^2.0.0",
"yaml": "^2.1.1"
},
"scripts": {
"build": "tsc; cp -r src/config/locales dist/config",
"start": "ts-node-dev --trace-warnings --project tsconfig.json src/main.ts",
"start:prod": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpamWatch/SpamWatchBot.git"
},
"author": "Chris Watson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpamWatch/SpamWatchBot/issues"
},
"homepage": "https://github.com/SpamWatch/SpamWatchBot#readme",
"devDependencies": {
"@grammyjs/types": "^2.3.1",
"@types/debug": "^4.1.7",
"@types/dedent": "^0.7.0",
"@types/i18next-fs-backend": "^1.1.2",
"@types/node": "^18.7.18",
"@types/node-fetch": "^3.0.3",
"@types/winston-loggly-bulk": "^3.0.1",
"dotenv": "^16.0.2",
"ts-node-dev": "^2.0.0"
}
}