-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.48 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.48 KB
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
{
"name": "proof-of-reputation-truffle",
"version": "1.0.0",
"description": "1. Installing dependencies \tFirst run `npm i` to ensure that all the node depenedencies are installed. 2. Install truffle globally \tRun `npm i -g truffle` 3. Ensure that Ganache is running \tI am using a Ganache GUI server. It runs as soon as I open the GUI. Also confirm that the port number is 7545. 4. Build the Contract \trun `truffle migrate`. It should compile and deploy the contract. A build folder will be generated and populated. If theres any issue with compilation, run `truffle compile` and debug from there. If theres any issue with deployment, verify that the ganache instance is running. 5. Run the server \tRun `node server.js` and check if it connects to the ganache instance. This is where it is currently failing",
"main": "server.js",
"directories": {
"test": "test"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2",
"cors": "^2.8.5",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.5",
"web3": "^1.9.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FY-BTech/Blockchain-Implementation.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FY-BTech/Blockchain-Implementation/issues"
},
"homepage": "https://github.com/FY-BTech/Blockchain-Implementation#readme"
}