-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 994 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 994 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
{
"name": "studentid_telegrambot_js",
"version": "1.0.0",
"description": "Telegram bot using javascript",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix . --config .eslintrc.js --ext .js",
"format": "prettier --write .",
"check": "npm run test && npm run lint"
},
"author": "Justin Looi",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^129.0.0",
"mongoose": "^7.4.4",
"node-telegram-bot-api": "^0.61.0",
"nodemailer": "^6.9.7"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
}
}