-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.29 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
{
"name": "opencashdao",
"author": "Kuldeep Singh",
"version": "0.1.0",
"description": "OpenCashDAO",
"main": "index.js",
"scripts": {
"start": "node index.js",
"compile:controller": "cashc ./dao/Controller.cash -o ./artifacts/dao/Controller.json",
"compile:submitProposal": "cashc ./dao/SubmitProposal.cash -o ./artifacts/dao/SubmitProposal.json",
"compile:executeProposal": "cashc ./dao/ExecuteProposal.cash -o ./artifacts/dao/ExecuteProposal.json",
"compile:voting": "cashc ./dao/Voting.cash -o ./artifacts/dao/Voting.json",
"compile:coordinator": "cashc ./upgradable/Coordinator.cash -o ./artifacts/upgradable/Coordinator.json",
"compile:contractA": "cashc ./upgradable/ContractA.cash -o ./artifacts/upgradable/ContractA.json",
"compile:contractNew": "cashc ./upgradable/ContractNew.cash -o ./artifacts/upgradable/ContractNew.json",
"compile": "npm run compile:controller && npm run compile:submitProposal && npm run compile:executeProposal && npm run compile:voting && npm run compile:coordinator && npm run compile:contractA && npm run compile:contractNew",
"build": "npm run compile && node index.js"
},
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.4",
"cashc": "^0.11.0-next.2",
"cashscript": "^0.11.0-next.2",
"dotenv": "^16.4.7"
}
}