-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "wallet-watch-bot",
"version": "0.1.0",
"description": "Sends a message to the discord channel when a transaction occurs for a specified Ethereum address",
"type": "module",
"engines": {
"node": ">= 18.12 <19"
},
"devDependencies": {
"@types/jest": "29.5.8",
"@types/node": "18.18.9",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"eslint": "~8.46",
"eslint-config-prettier": "~9.0",
"eslint-plugin-jest": "27.2.3",
"husky": "^8.0.3",
"jest": "29.6.4",
"lint-staged": "^15.1.0",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"ts-api-utils": "~1.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.ts": [
"prettier --config .prettierrc --write ."
]
},
"author": "bullishgopher <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"alchemy-sdk": "^2.11.0",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"ethers": "^6.8.1",
"tslib": "~2.6"
},
"volta": {
"node": "18.12.1"
}
}