-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
42
43
44
45
46
47
{
"name": "track-bnb-bot",
"version": "1.0.0",
"description": "a twitter bot that post bnb price",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "yarn run lint && rimraf build/ && tsc",
"postbuild": "copyfiles -u 1 src/assets/**/* src/previousBNBPrice.json build",
"start": "yarn run build && node build/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "husky install",
"postinstall": "yarn run build"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/node": "^18.11.9",
"@types/node-cron": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"copyfiles": "^2.4.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=19.0.1",
"yarn": ">=1.22.19"
},
"dependencies": {
"canvas": "^2.10.2",
"cron-time-generator": "^1.3.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"node-cron": "^3.0.2",
"simple-pancakeswap-sdk-with-multicall-fix": "^1.1.2",
"twitter-api-v2": "^1.12.9"
}
}