-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "land-auction",
"version": "1.0.0",
"description": "LAND Auction contract",
"main": "index.js",
"scripts": {
"test": "scripts/test.sh",
"test:watch": "nodemon test/** contracts/** --exec 'npm test'",
"lint": "npx eslint test && npx solium -d contracts",
"lint:fix": "npx eslint --fix test && npx solium -d contracts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/land-auction.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/decentraland/land-auction/issues"
},
"homepage": "https://github.com/decentraland/land-auction#readme",
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bn-chai": "^1.0.1",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"ethereumjs-abi": "^0.6.5",
"ganache-cli": "^6.1.0",
"mocha": "^3.5.3",
"npx": "^9.7.1",
"prettier": "^1.11.1",
"solidity-sha3": "^0.4.1",
"solium": "^1.1.8",
"truffle-flattener": "^1.2.4",
"truffle-hdwallet-provider": "0.0.3",
"web3": "^0.20.7"
},
"dependencies": {
"openzeppelin-eth": "^2.1.3",
"truffle": "^5.0.10",
"zos-lib": "^2.2.2"
}
}