-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 2 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
{
"name": "firefly-iii-telegram-bot",
"description": "A Telegram bot for working with Firefly III with a supersonic speed",
"version": "2.1.0",
"homepage": "https://github.com/cyxou/firefly-iii-telegram-bot#readme",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/cyxou/firefly-iii-telegram-bot.git"
},
"author": {
"name": "Alex Sukhov",
"email": "[email protected]"
},
"scripts": {
"start": "nodemon src/index.ts",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix",
"update:i": "ncu --interactive",
"build": "tsc",
"postbuild": "npm run copylocales",
"copylocales": "cp -r src/locales dist/",
"clean:api": "rm -rf src/lib/firefly/api",
"clean:model": "ls ./src/lib/firefly/model/ | grep -v currency-update.ts | xargs -I {} rm ./src/lib/firefly/model/{}",
"precodegen": "npm run clean:api && npm run clean:model",
"codegen": "openapi-generator-cli generate -i https://api-docs.firefly-iii.org/firefly-iii-2.0.10-v1.yaml -o src/lib/firefly -g typescript-axios -c .openapi-generator-config.yaml"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.5.2",
"@types/debug": "4.1.7",
"@types/lodash.flatten": "4.4.7",
"@types/lodash.isempty": "4.4.7",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint": "8.33.0",
"nodemon": "2.0.20",
"npm-check-updates": "16.6.3",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"@grammyjs/i18n": "0.5.1",
"@grammyjs/menu": "1.2.1",
"@grammyjs/router": "2.0.0",
"@grammyjs/storage-file": "2.3.2",
"axios": "1.2.6",
"dayjs": "1.11.7",
"debug": "4.3.4",
"dotenv": "16.0.3",
"grammy": "1.19.0",
"lodash.curry": "4.1.1",
"lodash.flatten": "4.4.0",
"lodash.isempty": "4.4.0",
"mathjs": "11.5.0",
"node-fetch": "3.3.0",
"node-json-db": "2.1.4",
"table": "6.8.1"
}
}