-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 926 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
{
"name": "virtue-dao",
"version": "0.0.1",
"description": "A DAO with no proposals, virtuous swarms on a mission with continuous EnDAOment funding",
"main": "index.js",
"repository": "[email protected]:aquabu/virtue-dao.git",
"author": "Noah Thorp <[email protected]>",
"license": "MIT",
"scripts": {
"build": "browserify gh-pages/scripts/*.js -o gh-pages/build/bundle.js && cp build/contracts/* gh-pages/build",
"publish-site": "git subtree push --prefix gh-pages origin gh-pages",
"dev": "nodemon -e js --watch gh-pages --ignore gh-pages/build/ --exec \"yarn build && node app.js\"",
"test": "yarn truffle test",
"test:js": "yarn truffle test test/js/*"
},
"dependencies": {
"@openzeppelin/contracts": "^2.5.0",
"browserify": "^16.5.0",
"express": "^4.17.1",
"nodemon": "^1.19.1",
"truffle": "^5.0.33",
"truffle-assertions": "^0.9.2",
"web3": "^1.2.1"
}
}