-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "omnibridge-nft",
"version": "2.0.0-rc5",
"description": "Omnibridge NFT AMB extension",
"main": "index.js",
"scripts": {
"test": "scripts/test.sh",
"coverage": "SOLIDITY_COVERAGE=true scripts/test.sh",
"compile": "truffle compile",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:prettier:fix": "prettier --write \"contracts/**/*.sol\"",
"deploy": "node deploy/deploy.js",
"remixd": "remixd -s /workdir --remix-ide https://remix.ethereum.org",
"e2e-tests:local": "./e2e-tests/run-tests.sh local",
"e2e-tests:public": "./e2e-tests/run-tests.sh"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.1-solc-0.7-2",
"@remix-project/remixd": "0.3.5",
"axios": "^0.21.0",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"ipfs-http-client": "^50.1.0",
"promise-retry": "^2.0.1",
"querystring": "^0.2.0",
"shelljs": "^0.8.4",
"truffle": "^5.1.55",
"truffle-plugin-verify": "^0.5.8",
"web3": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"ethereumjs-util": "5.2.0",
"ganache-cli": "^6.12.1",
"prettier": "^2.2.0",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.12"
},
"engines": {
"node": ">= 14"
},
"author": "POA Network",
"license": "GPL-3.0"
}