-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "english-mate-bot",
"version": "1.0.0",
"description": "A Telegram bot that provides tools for a better English learning experience.",
"scripts": {
"build": "rm -rf ./build && npx tsc --project tsconfig.build.json",
"start": "npm run build && node build/launcher.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/omidazadi/english-mate-bot.git"
},
"author": "Omid Azadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/omidazadi/english-mate-bot/issues"
},
"engines": {
"node": "= v20.12.0",
"npm": ">= 10.5.0"
},
"homepage": "https://github.com/omidazadi/english-mate-bot#readme",
"devDependencies": {
"@types/node": "^20.11.25",
"@types/nunjucks": "^3.2.6",
"@types/pg": "^8.11.2",
"typescript": "^5.4.2"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cron": "^3.1.6",
"dotenv": "^16.4.5",
"fsrs.js": "^1.2.2",
"grammy": "^1.21.1",
"nunjucks": "^3.2.4",
"pg": "^8.11.3"
}
}