-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
55 lines (55 loc) · 1.37 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
52
53
54
55
{
"name": "teknologi-umum-bot",
"version": "1.0.0",
"main": "src/app.js",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon --max-old-space-size=220 src/app.js",
"lint": "eslint --fix --ignore-path .gitignore .",
"prepare": "node prepare.cjs",
"test": "c8 --reporter=lcov --reporter=text uvu tests"
},
"bugs": {
"url": "https://github.com/teknologi-umum/bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teknologi-umum/bot.git"
},
"homepage": "https://t.me/teknologi_umum",
"imports": {
"#services/*": "./src/services/*",
"#utils/*": "./src/utils/*"
},
"dependencies": {
"@logtail/node": "^0.4.21",
"@sentry/node": "^7.112.2",
"@teknologi-umum/nedb-promises": "^5.0.3",
"carret": "^1.0.4",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"esprima": "^4.0.1",
"got": "^12.6.0",
"kleur": "^4.1.5",
"mongoose": "^8.2.4",
"qrcode": "^1.5.3",
"sanitize-html": "^2.13.0",
"telegraf": "^4.16.3",
"tempura": "^0.4.1"
},
"devDependencies": {
"@teknologi-umum/eslint-config-base": "^0.0.11",
"c8": "^8.0.1",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"uvu": "^0.5.6"
},
"engineStrict": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}