-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "faceit-stats",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --watch --env-file=.env app.js"
},
"keywords": [],
"author": "nhamonin",
"license": "ISC",
"type": "module",
"devDependencies": {
"eslint": "^8.23.1",
"prettier": "^2.7.1",
"prisma": "^6.0.1"
},
"dependencies": {
"@getvim/execute": "^1.0.0",
"@prisma/client": "^6.0.1",
"bottleneck": "^2.19.5",
"faceit-node-api": "^2.0.0",
"i18next": "^22.4.11",
"knex": "^2.4.2",
"node-cron": "^3.0.2",
"node-telegram-bot-api": "^0.59.0",
"pg": "^8.10.0",
"puppeteer": "^23.10.4",
"undici": "^5.19.1"
},
"imports": {
"#config": "./config/config.js",
"#db": "./database/database.js",
"#locales": "./locales/index.js",
"#telegramReplyMarkup": "./config/telegramReplyMarkup/index.js",
"#controllers": "./controllers/index.js",
"#jobs": "./jobs/index.js",
"#templates": "./public/templates/index.js",
"#services": "./services/index.js",
"#utils": "./utils/index.js",
"#routes": "./routes/index.js"
}
}