-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "twi-mon-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.7.9",
"axios-http2-adapter": "^1.0.2",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"html-entities": "^2.3.2",
"http2-wrapper": "^2.2.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.66.0",
"p-limit": "^3.1.0",
"p-map": "^4.0.0",
"quick-lru": "^5.1.1",
"sequelize": "^6.29.0",
"superstruct": "^0.16.7",
"tough-cookie": "^5.1.0",
"uuid": "^11.0.5",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@tsconfig/node22": "^22.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": "^22.9.3",
"@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"
}
}