-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.03 KB
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
{
"name": "yt-watch-bot",
"version": "0.0.1",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"clean": "del-cli ./dist",
"build": "npm run clean && tsc",
"watch": "tsc -w & cross-env DEBUG=app:* nodemon ./dist/main.js",
"start": "cross-env DEBUG=app:* node ./dist/main.js",
"test": "npm run test:types && cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:types": "tsc --noEmit -p tsconfig.test.json",
"typescript:check": "tsc --noEmit",
"lint": "npx eslint ./src ./test && npm run shared:check && npm run prettier",
"shared:check": "node scripts/checkShared.mjs",
"lint:fix": "npx eslint --fix ./src ./test && npm run prettier:fix",
"prettier": "npx prettier --check './{src,test}/**/*.ts' './scripts/**/*.mjs'",
"prettier:fix": "npx prettier --write './{src,test}/**/*.ts' './scripts/**/*.mjs'"
},
"dependencies": {
"axios": "^1.20.0",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"iso8601-duration": "^2.1.4",
"json-stringify-pretty-compact": "^4.0.0",
"limiter": "^3.0.0",
"lodash.throttle": "^4.1.1",
"mariadb": "^3.5.4",
"node-telegram-bot-api": "^2.1.0",
"p-limit": "^7.3.2",
"p-map": "^7.0.7",
"quick-lru": "^7.3.0",
"sequelize": "^6.37.8",
"umzug": "^3.8.3",
"undici": "^7.29.1",
"uuid": "^11.1.1",
"valibot": "^1.4.2",
"xmldoc": "^3.0.0"
},
"devDependencies": {
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@gravity-ui/eslint-config": "^4.3.2",
"@jest/globals": "^30.5.1",
"@swc/core": "^1.16.1",
"@swc/jest": "^0.2.39",
"@tsconfig/node24": "^24.0.5",
"@types/debug": "^4.1.13",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^24.13.3",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"eslint": "^9.39.5",
"eslint-import-resolver-typescript": "^4.4.5",
"jest": "^30.5.1",
"nodemon": "^3.1.14",
"prettier": "^3.9.6",
"typescript": "^6.0.3"
}
}