forked from RockLogicGmbH/slashing-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "slashing-guard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "npx nodemon | pino-pretty",
"start": "ts-node dist/index.js",
"build": "tsc -p .",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:coverage": "jest --coverage",
"lint": "eslint \"{src,test}/**/*.[tj]s?(x)\"",
"lint:fix": "eslint \"{src,test}/**/*.[tj]s?(x)\" --fix",
"lint:file": "eslint $1",
"lint:file:fix": "eslint --fix $1",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node-fetch": "^2.6.3",
"@types/node-schedule": "^2.1.0",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"prettier": "^2.8.8",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1"
},
"dependencies": {
"axios": "^1.3.6",
"dotenv": "^16.0.3",
"grammy": "^1.15.3",
"level": "^8.0.0",
"node-schedule": "^2.1.1",
"pino": "^8.11.0",
"telegram-format": "^2.1.0"
}
}