-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "bounty-dapp",
"version": "1.0.0",
"description": "Bounty dApp - Consensys Scholarship Final Project",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "./node_modules/.bin/webpack-cli --mode development && http-server ./build/app -a 0.0.0.0 -c-1",
"build": "webpack-cli --mode development",
"test": "bash startGanache.sh && truffle test && bash stopGanache.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remedcu/Bounty-dApp.git"
},
"keywords": [
"Bounty",
"Blockchain",
"Solidity",
"Truffle",
"Smart",
"Contract"
],
"author": "Shebin John",
"license": "ISC",
"bugs": {
"url": "https://github.com/remedcu/Bounty-dApp/issues"
},
"homepage": "https://github.com/remedcu/Bounty-dApp#readme",
"dependencies": {
"dotenv": "^16.0.0",
"ganache-cli": "^6.8.1",
"truffle-assertions": "^0.9.2",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-security": "^1.6.2",
"webpack-cli": "^5.0.0",
"jquery": "3.7.1",
"truffle-contract": "4.0.31",
"http-server": "^14.0.0"
},
"devDependencies": {
"webpack": "^5.4.0",
"file-loader": "^6.2.0"
}
}