-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.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
{
"name": "sniper-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index --inspect",
"dev-no-watch": "node index --inspect",
"start": "node index",
"zip": "zip -r ./build/trader.zip . -x .env -x '*.git*' -x '*/.DS_Store/*' -x '*build*'",
"generateMinions": "node zergArmy/generateMinions"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.3.0",
"@truffle/hdwallet-provider": "^1.4.3",
"bignumber.js": "^9.0.1",
"dotenv": "^10.0.0",
"ethers": "^5.4.1",
"express": "^4.17.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.14.7",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
}
}