-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.91 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
{
"name": "oracle",
"version": "1.3.1",
"description": "Oracle for moving tokens and code to and from the FIO chain",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint \"./**/*.js\" --fix",
"format": "prettier --write \"./**/*.js\"",
"start": "cross-env NODE_ENV=mainnet nodemon server.js",
"start:testnet": "cross-env NODE_ENV=testnet nodemon --experimental-json-modules server.js",
"oracle": "cross-env NODE_ENV=mainnet node scripts/oracle.js",
"oracle:testnet": "cross-env NODE_ENV=testnet node scripts/oracle.js",
"tryagain": "cross-env NODE_ENV=mainnet node scripts/try-again.js JOB_LIST=wrapEth,unwrapEth,wrapPoly,unwrapPoly",
"tryagain:testnet": "cross-env NODE_ENV=testnet node scripts/try-again.js JOB_LIST=wrapEth,unwrapEth,wrapPoly,unwrapPoly"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "7.25.7",
"@babel/plugin-syntax-import-assertions": "7.25.7",
"@babel/preset-env": "7.25.7",
"cross-env": "7.0.3",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"nodemon": "3.1.0",
"prettier": "3.3.3"
},
"dependencies": {
"@babel/runtime": "7.20.1",
"@ethereumjs/common": "3.0.1",
"@ethereumjs/tx": "4.0.1",
"@fioprotocol/fiojs": "1.0.1",
"big.js": "6.2.1",
"body-parser": "1.20.1",
"cors": "2.8.5",
"dotenv": "16.4.5",
"dotenv-safe": "9.1.0",
"esm": "3.2.25",
"ethers": "5.7.2",
"express": "4.18.2",
"fs": "0.0.1-security",
"moralis": "2.26.2",
"node-cache": "5.1.2",
"node-fetch": "3.3.2",
"node-file-cache": "1.0.2",
"node-libcurl": "4.0.0",
"text-encoding": "0.7.0",
"thirdweb": "5.28.0",
"web3": "1.10.2",
"web3-eth-contract": "1.10.2"
},
"type": "module"
}