-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "mev-bot",
"description": "",
"author": "goodmandev",
"license": "MIT",
"main": "dist/app.js",
"homepage": ".",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.24.0",
"cors": "^2.8.5",
"debug": "~3.1.0",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"express-session": "^1.17.1",
"fs": "^0.0.1-security",
"hardhat": "^2.6.2",
"mongodb": "^4.3.0",
"rimraf": "^3.0.2",
"uuid": "^8.3.2",
"web3": "^1.8.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jest": "^27.5.1",
"@types/mocha": "^9.1.1",
"@types/node": "^15.12.4",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"chai": "^4.3.4",
"colors": "^1.4.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat-deploy": "^0.9.3",
"jest": "^28.1.0",
"mocha": "^9.1.3",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.3.4"
},
"scripts": {
"dev": "ts-node -r tsconfig-paths/register ./src/app.ts",
"approve_main": "npx hardhat run --network ethereum scripts/deploy.js",
"approve_main_": "npx hardhat run --network ethereum_ scripts/deploy.js",
"approve_test": "npx hardhat run --network sepoliatestnet scripts/deploy.js",
"watch": "nodemon -e ts -w src -x npm run watch:serve",
"watch:serve": "tsc && node dist/app.js",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "jest"
}
}