-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 946 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": "ethereum-kickstarter-clone",
"version": "1.0.0",
"description": "A kickstarter clone built with the Ethereum network.",
"main": "index.js",
"repository": "[email protected]:mtnptrsn/ethereum-kickstarter-clone.git",
"author": "<[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^5.0.1",
"fs-extra": "^6.0.1",
"ganache-cli": "^6.1.0",
"mocha": "^5.2.0",
"next": "4.1.4",
"next-routes": "^1.4.2",
"ramda": "^0.25.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"semantic-ui-react": "^0.80.0",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.3",
"web3": "1.0.0-beta.26"
},
"scripts": {
"test": "mocha",
"watch:test": "nodemon --watch . --exec 'mocha'",
"build:contracts": "node ./ethereum/compile.js",
"watch:contracts": "nodemon ./ethereum/compile.js",
"deploy": "node ./ethereum/deploy",
"dev": "node ./server.js"
}
}