-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "myrnews-tgbot",
"private": true,
"version": "3.1.4",
"type": "module",
"description": "Myrotvorets.news Telegram Bot",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"prestart:dev": "node --import=./loader.mjs ./test/migrate.mts",
"start:dev": "nodemon",
"start": "node ./dist/src/index.mjs",
"test": "mocha",
"test:coverage": "c8 mocha",
"preversion": "npm test",
"postinstall": "husky || true"
},
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"dependencies": {
"@bugsnag/js": "^8.0.0",
"@grammyjs/auto-retry": "^2.0.0",
"@myrotvorets/envalidators": "^2.1.0",
"@myrotvorets/opentelemetry-configurator": "^7.3.0",
"@myrotvorets/otel-utils": "^1.1.2",
"@opentelemetry/instrumentation-http": "^0.57.0",
"@opentelemetry/instrumentation-knex": "^0.44.0",
"debug": "^4.3.4",
"envalid": "^8.0.0",
"grammy": "^1.19.2",
"knex": "^3.1.0",
"mysql2": "^3.6.5"
},
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@n8n/localtunnel": "^3.0.0",
"@types/chai": "^5.0.0",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.6.11",
"@types/supertest": "^6.0.2",
"better-sqlite3": "^11.0.0",
"c8": "^10.0.0",
"chai": "^5.0.3",
"eslint-formatter-gha": "^1.4.3",
"eslint-plugin-mocha": "^10.2.0",
"husky": "^9.0.9",
"lint-staged": "^15.2.1",
"mocha": "^11.0.0",
"mocha-multi": "^1.1.7",
"mocha-reporter-gha": "^1.1.1",
"mocha-reporter-sonarqube": "^2.0.6",
"nodemon": "^3.0.3",
"supertest": "^7.0.0",
"testdouble": "^3.20.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"overrides": {
"ansi-color": "npm:@myrotvorets/ansi-color@^0.2.2"
},
"lint-staged": {
"*.mts": "eslint --fix"
}
}