-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 939 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 939 Bytes
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
{
"name": "todobot",
"version": "1.0.0",
"description": "Bot para cumplir objetivos",
"license": "UNLICENSED",
"author": "Andrz98",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint . --fix",
"format": "prettier --write .",
"logs": "cat logs.txt",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"_moduleAliases": {
"@": "toDoBot"
},
"dependencies": {
"dotenv": "^16.5.0",
"express": "^4.21.2",
"luxon": "^3.6.1",
"mongoose": "^8.12.1",
"node-cron": "^3.0.3",
"telegraf": "^4.16.3",
"telegraf-session-local": "^2.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"eslint": "^9.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"supertest": "^7.1.0",
"vitest": "^3.0.9"
}
}