-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) 路 1.44 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) 路 1.44 KB
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
{
"name": "commercialista-bot",
"version": "0.2.0",
"description": "A little bean-counting minion",
"main": "src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "eslint --ext=js,ts --fix . ",
"lint": "eslint --ext=js,ts . ",
"start": "node build/app.js",
"build": "tsc -p ./tsconfig.json",
"dev": "ts-node src/app.ts",
"watch": "nodemon --watch './**/*' --ext 'js,ts,json' --exec 'npm run dev'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ALCC01/commercialista-bot.git"
},
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ALCC01/commercialista-bot/issues"
},
"homepage": "https://github.com/ALCC01/commercialista-bot#readme",
"private": true,
"devDependencies": {
"@types/npmlog": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/node-telegram-bot-api": "^0.53.6",
"ajv": "^8.11.2",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"node-fetch": "^3.3.0",
"node-telegram-bot-api": "^0.56.0",
"npmlog": "^6.0.2",
"xstate": "^4.34.0"
}
}