forked from kenryu42/ethereum-nft-sales-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
65
66
67
68
69
70
71
{
"name": "ethereum-nft-sales-bot",
"version": "0.3.0",
"description": "An ethereum NFT sales monitoring bot.",
"main": "src/app.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npx tsc",
"postinstall": "npm run build",
"start": "node --no-warnings dist/app.js",
"debug": "node --no-warnings dist/app.js -t",
"format": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --ext .ts",
"fix": "npm run format && npm run lint",
"unit": "npx mocha test/unit/*",
"integration": "npx mocha test/integration/*",
"test": "npm run unit && npm run integration",
"update": "git pull && npm i",
"commit": "npx cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenryu42/ethereum-nft-sales-bot.git"
},
"author": "Kenryu (@kenryu42)",
"license": "MIT",
"dependencies": {
"alchemy-sdk": "^2.0.0",
"async-retry": "^1.3.3",
"axios": "^0.24.0",
"commander": "^9.3.0",
"discord.js": "^13.7.0",
"dotenv": "^16.0.1",
"ethers": "^5.5.4",
"image-size": "^1.0.2",
"jimp-compact": "^0.16.1-2",
"lodash": "^4.17.21",
"make-a-gif": "^4.1.2",
"sharp": "^0.30.7",
"twitter-api-v2": "^1.12.2",
"web3-eth-abi": "^1.7.4"
},
"devDependencies": {
"@types/async-retry": "^1.4.4",
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.1",
"@types/sharp": "^0.30.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}