-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "@botvy/rfc-synchronizer",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"dev": "ts-node-dev --clear --respawn --no-notify src/main.ts",
"format:check": "prettier -l src",
"format:write": "prettier --write src",
"start": "node dist/main.js"
},
"dependencies": {
"@octokit/plugin-retry": "^3.0.1",
"@octokit/plugin-throttling": "^3.2.0",
"@octokit/rest": "^17.5.1",
"@octokit/webhooks": "^7.2.0",
"discord.js": "^12.2.0",
"inversify": "^5.0.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/node": "^13.13.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
}
}