-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 952 Bytes
/
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
{
"scripts": {
"start": "node index",
"check-birthdays": "node src/scripts/reminder.js",
"lint": "eslint '**/*.js'",
"lint:fix": "yarn lint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"mongoose": "^5.11.19",
"node-cron": "^2.0.3",
"node-telegram-bot-api": "^0.40.0",
"underscore": "^1.12.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}