-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
{
"name": "quot-af-bot",
"version": "1.0.1",
"main": "dist/index.js",
"license": "MIT",
"node": ">=18.15.0",
"scripts": {
"start": "npm run build && NODE_PATH=dist/ node dist/index.js",
"build": "tsc --outDir dist && npm run cp-files",
"cp-files": "cpy 'src/**/*' '!**/*.ts' dist/ --cwd=. --parents",
"dev": "npm run cp-files && NODE_PATH=dist/ tsc-watch --skipLibCheck --onSuccess \"node dist/index.js\""
},
"devDependencies": {
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"cpy-cli": "^4.2.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-no-relative-import-paths": "^1.0.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unicorn": "^46.0.0",
"module-alias": "^2.2.2",
"source-map-support": "^0.5.21",
"tsc-watch": "^4.6.2",
"typescript": "^5.0.2"
},
"dependencies": {
"@grammyjs/hydrate": "^1.3.1",
"@grammyjs/i18n": "^1.0.1",
"@grammyjs/menu": "^1.1.3",
"@grammyjs/parse-mode": "^1.6.0",
"@grammyjs/storage-file": "^2.1.4",
"@grammyjs/transformer-throttler": "^1.2.1",
"@loskir/grammy-views": "^0.3.1",
"@moebius/fluent": "^1.1.0",
"@types/node-gzip": "^1.1.0",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"grammy": "^1.15.1",
"grammy-middlewares": "^1.0.11",
"lru-cache": "^8.0.3",
"mongoose": "^7.0.1",
"node-gzip": "^1.1.2",
"winston": "^3.8.2"
}
}