-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "standup-dc-bot",
"version": "2.0.0",
"main": "index.js",
"repository": "https://github.com/msteknoadam/standup-dc-bot",
"author": "msteknoadam <40995274+msteknoadam@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@types/node": "^14.14.10",
"date-fns": "^2.25.0",
"discord.js": "^12.5.1",
"nedb": "^1.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/nedb": "^1.8.11",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^3.2.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
},
"scripts": {
"preinstall": "node enforce-yarn.js",
"dev": "nodemon bot.ts",
"start": "ts-node bot.ts",
"ci-check": "yarn lint && tsc --noEmit",
"lint": "eslint . --quiet",
"lint-fix": "eslint . --quiet --fix"
},
"nodemonConfig": {
"delay": 2500
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}