-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
50
{
"name": "@gmussi-contracts/solidity-voting",
"version": "0.0.1",
"description": "A smart contract that allows creation of polls and voting on them",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json"
],
"scripts": {
"compile": "truffle compile-all",
"test": "truffle run coverage",
"server": "nodemon gui/server.js",
"publish": "npm publish --access=public",
"dockerize": "docker build -t solidity-voting-server .",
"dockerized-server": "docker run -it -p 3000:3000 --env-file .\\.env.development --name solidity_voting solidity-voting-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmussi/solidity-voting.git"
},
"keywords": [
"solidity",
"ethereum",
"dapp",
"voting",
"blockchain",
"smart",
"contracts"
],
"author": "Guilherme Mussi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gmussi/solidity-voting/issues"
},
"homepage": "https://github.com/gmussi/solidity-voting#readme",
"dependencies": {
"@gmussi-contracts/gmussi-claimable": "1.2.0",
"@truffle/hdwallet-provider": "^1.4.1",
"bip39": "^3.0.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.12",
"web3": "^1.4.0"
},
"devDependencies": {
"buidler-gas-reporter": "^0.1.4",
"eth-gas-reporter": "^0.2.22",
"solidity-coverage": "^0.7.16"
}
}