-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "ether-fund",
"version": "1.0.0",
"description": "A KickStarter like DApp using Ethereum and Solidity",
"main": "index.js",
"scripts": {
"test": "mocha",
"dev": "node server.js",
"start": "NODE_ENV=production node server.js",
"build": "next build",
"predeploy": "npm run build",
"deploy": "gh-pages -d next build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salman-ar-sar/kickstart.git"
},
"author": "Salman A.",
"license": "ISC",
"bugs": {
"url": "https://github.com/salman-ar-sar/kickstart/issues"
},
"homepage": "https://salman-ar-sar.github.io/EtherFund",
"dependencies": {
"fs-extra": "^9.1.0",
"ganache-cli": "^6.12.2",
"mocha": "^8.3.2",
"next": "^10.2.0",
"next-routes": "^1.4.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"solc": "^0.4.17",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.0.0-beta.26"
},
"devDependencies": {
"gh-pages": "^3.1.0"
}
}