forked from fuseio/fuse-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "fuse-network",
"version": "0.1.0",
"description": "Fuse Network",
"main": "",
"scripts": {
"test": "scripts/test.sh",
"compile": "node_modules/.bin/truffle compile",
"flatten": "scripts/flatten.sh",
"abi": "scripts/abi.sh",
"deploy:fuse": "node_modules/.bin/truffle migrate --reset --network fuse",
"deploy:local": "node_modules/.bin/truffle migrate --reset --network local",
"app": "node app/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuseio/fuse-network.git"
},
"standard": {
"env": {
"mocha": true,
"truffle/globals": true
},
"plugins": [
"truffle"
]
},
"author": "Lior Rabin",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0",
"ethereumjs-wallet": "^0.6.3",
"openzeppelin-solidity": "2.1.0",
"truffle-hdwallet-provider": "^1.0.12"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"eth-gas-reporter": "^0.2.1",
"ganache-cli": "^6.4.3",
"node-jq": "^1.9.0",
"solc": "0.4.24",
"truffle": "^5.0.24",
"truffle-flattener": "^1.3.0"
}
}