-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.17 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
{
"name": "telegram-click-claim-bot",
"private": true,
"type": "module",
"scripts": {
"start": "node bin/server.js",
"build": "node ace build --ignore-ts-errors",
"dev": "node ace serve --hmr",
"check:eslint": "eslint .",
"check:prettier": "prettier . --check",
"check:typescript": "tsc --noEmit",
"prettier": "prettier . --write"
},
"imports": {
"#controllers/*": "./app/controllers/*.js",
"#exceptions/*": "./app/exceptions/*.js",
"#models/*": "./app/models/*.js",
"#mails/*": "./app/mails/*.js",
"#services/*": "./app/services/*.js",
"#listeners/*": "./app/listeners/*.js",
"#events/*": "./app/events/*.js",
"#middleware/*": "./app/middleware/*.js",
"#validators/*": "./app/validators/*.js",
"#providers/*": "./providers/*.js",
"#policies/*": "./app/policies/*.js",
"#abilities/*": "./app/abilities/*.js",
"#helpers/*": "./helpers/*.js",
"#database/*": "./database/*.js",
"#start/*": "./start/*.js",
"#config/*": "./config/*.js"
},
"devDependencies": {
"@adonisjs/assembler": "^7.7.0",
"@adonisjs/tsconfig": "^1.3.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@swc/core": "^1.6.13",
"@swc/wasm": "^1.6.7",
"@types/bull": "^4.10.0",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.14.2",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"eslint": "^8.57.0",
"hot-hook": "^0.2.6",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@adonisjs/core": "^6.9.0",
"@adonisjs/redis": "^9.1.0",
"@logtail/pino": "^0.5.0",
"avsc": "^5.7.7",
"eventsource": "^2.0.2",
"fetch-socks": "^1.3.0",
"ky": "^1.3.0",
"pino-elasticsearch": "^8.0.0",
"pino-pretty": "^11.2.1",
"pino-roll": "^1.2.0",
"reflect-metadata": "^0.2.2",
"telegraf": "^4.16.3",
"telegram": "^2.22.2",
"ws": "^8.18.0"
}
}