-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 804 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 804 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
{
"name": "chomtu_bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"format": "prettier --write src/"
},
"keywords": [],
"author": "arsen1c",
"license": "MIT",
"dependencies": {
"@vitalets/google-translate-api": "^9.2.0",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^16.4.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"telegraf": "^4.0.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.3",
"husky": "^8.0.1",
"nodemon": "^2.0.7",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}