-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "yt-watch-bot",
"version": "0.0.1",
"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",
"typescript:check": "tsc --noEmit",
"prettier": "npx prettier --check ./src",
"prettier:fix": "npx prettier --write ./src"
},
"dependencies": {
"axios": "^1.9.0",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"iso8601-duration": "^2.1.1",
"json-stringify-pretty-compact": "^3.0.0",
"limiter": "^2.1.0",
"lodash.throttle": "^4.1.1",
"mariadb": "^3.0.0",
"node-telegram-bot-api": "^0.67.0",
"p-limit": "^3.1.0",
"p-map": "^4.0.0",
"quick-lru": "^5.1.1",
"sequelize": "^6.29.0",
"superstruct": "^0.16.7",
"uuid": "^11.0.5",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.0",
"@types/debug": "^4.1.8",
"@types/express": "^4.17.9",
"@types/jest": "^29.5.3",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^24.10.11",
"@types/node-fetch": "^2.6.4",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/xmldoc": "^1.1.6",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"overrides": {
"@cypress/request": "file:./packages/noop",
"@cypress/request-promise": "file:./packages/noop"
}
}