-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 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": "ens-cloudnode",
"version": "0.1.0",
"private": true,
"description": "A ENS based resolver, so users can control the backend",
"main": "truffle.js",
"author": "Ocyan Cloud LTD <contact@ocyan.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ocyan/ens-cloudnode/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Ocyan/ens-cloudnode.git"
},
"keywords": [],
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "9.0.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.2",
"dotenv": "6.0.0",
"fs-extra": "7.0.0",
"glob": "^7.1.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.8",
"solium-plugin-security": "^0.1.1",
"truffle-contract": "^3.0.6",
"truffle-hdwallet-provider": "0.0.6",
"truffle-hdwallet-provider-privkey": "^0.3.0",
"web3-utils": "^1.0.0-beta.36"
},
"dependencies": {
"@ensdomains/ens": "git+https://github.com/ensdomains/ens.git",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-preset-stage-3": "^6.3.13",
"eth-ens-namehash": "^2.0.8",
"eth-random": "0.0.4-alpha.1",
"ethereum-ens": "^0.7.4",
"ganache-cli": "^6.1.8",
"openzeppelin-solidity": "^1.11.0",
"solc": "^0.4.22",
"truffle": "^4.1.14",
"web3": "^1.0.0-beta.36",
"web3-provider-engine": "^14.0.6"
},
"scripts": {
"truffle": "truffle",
"test": "npm run test:contracts",
"test:contracts": "truffle test",
"deploy": "truffle migrate --reset",
"deploy:rinkeby": "truffle migrate --reset --network rinkeby",
"deploy:ropsten": "truffle migrate --reset --network ropsten",
"build": "npm run build:contracts",
"build:contracts": "rm -rf ./build && truffle compile",
"start": "./node.sh daemon && npm run deploy && truffle console"
}
}