-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "marketplace-contracts",
"version": "0.0.0-semantic-release",
"description": "Smart contracts for Decentraland Marketplace",
"main": "index.js",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"abi-decoder": "^1.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bn-chai": "^1.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"dotenv": "^8.2.0",
"ethereumjs-abi": "^0.6.5",
"ganache-cli": "^6.1.8",
"hardhat": "^2.0.10",
"husky": "^1.3.1",
"prettier": "^1.14.2",
"semantic-release": "^15.13.3",
"solium": "^1.1.8",
"validate-commit-msg": "^2.14.0",
"web3": "^1.3.4"
},
"scripts": {
"test": "scripts/test.sh",
"lint": "npx solium -d contracts",
"lint:fix": "npx solium -d contracts --fix",
"semantic-release": "semantic-release",
"commit-msg": "validate-commit-msg",
"compile": "npx hardhat compile"
},
"author": "Decentraland",
"license": "ISC",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"decentraland-contract-plugins": "^2.2.0",
"ethers": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/marketplace-contracts.git"
}
}