-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
61
62
63
{
"name": "ru-bot",
"version": "0.6.0",
"description": "Telegram bot to manage spam and rules for @_ru community",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"test": "npm run test:lint",
"test:lint": "eslint src",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"dev": "nodemon",
"start": "node dist",
"migrate": "sequelize db:migrate",
"rollback": "sequelize db:migrate:undo",
"prepush": "npm test",
"precommit": "npm test --silent"
},
"keywords": [
"telegram",
"bot"
],
"engines": {
"node": ">=14"
},
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.28.0",
"dotenv": "^8.2.0",
"mongodb": "^3.6.10",
"pg": "^8.5.1",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.2.0",
"telegraf": "^3.38.0",
"telegraf-throttler": "^0.2.0"
},
"devDependencies": {
"@types/mongodb": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.0.4",
"nodemon": "^2.0.20",
"prettier": "^2.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true
}
}