-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
64
{
"name": "crackwatch-bot",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">= 12.13"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"test": "uvu -br ts-node/register tests",
"test:build": "tsc -p tsconfig.release.json --noEmit",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write src"
},
"keywords": [
"crackwatch"
],
"author": "MrMarble",
"license": "ISC",
"devDependencies": {
"@types/mongoose": "^5.7.32",
"@types/node": "^14.6.2",
"@types/node-fetch": "^2.5.7",
"@types/sinon": "^9.0.8",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mock-socket": "^9.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sinon": "^9.2.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7",
"uvu": "^0.3.4"
},
"dependencies": {
"dotenv": "^8.2.0",
"mongoose": "^5.9.25",
"node-fetch": "^3.1.1",
"telegraf": "^3.38.0",
"telegraf-i18n": "^6.6.0",
"wait-for-event": "^2.0.1",
"winston": "^3.3.3",
"ws": "^7.4.6"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --cache --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}