-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
32 lines (32 loc) · 849 Bytes
/
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
{
"name": "final_project",
"version": "0.1.0",
"description": "Final project for Consensys Academy ",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test test/full-workflow.js",
"migrate": "truffle migrate --reset; cp ./build/contracts/Stake*.json ./src/js/.",
"server": "./node_modules/local-web-server/bin/cli.js -d src/"
},
"keywords": [
"ethereum",
"dapp"
],
"author": "Antonios Hadjigeorgalis <[email protected]> (https://antonioshadji.github.io/)",
"license": "MIT",
"devDependencies": {
"chai": "4.1.2",
"dotenv": "6.0.0",
"ganache-cli": "6.1.0-beta.4",
"local-web-server": "2.6.0",
"mocha": "5.2.0",
"webpack": "4.16.3"
},
"dependencies": {
"truffle-hdwallet-provider": "0.0.6",
"zeppelin-solidity": "1.11.0"
}
}