-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
32
33
34
35
36
{
"name": "blockchain-dev",
"version": "1.0.0",
"description": "a project for learn blockchain",
"main": "index.js",
"scripts": {
"ganache": "ganache --deterministic -h 10.10.50.80",
"dev-migrate": "truffle migrate --network development",
"dev-console": "truffle console --network development",
"dev-exec": "truffle exec --network development",
"qk-migrate": "truffle migrate --network quiknode",
"qk-console": "truffle console --network quiknode",
"qk-exec": "truffle exec --network quiknode"
},
"author": "Jacky.li",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jackyli86/blockchain.git"
},
"keywords": [
"blockchain"
],
"bugs": {
"url": "https://github.com/jackyli86/blockchain/issues"
},
"homepage": "https://github.com/jackyli86/blockchain#readme",
"devDependencies": {
"@truffle/hdwallet-provider": "^2.1.8",
"ganache": "^7.5.0",
"truffle": "^5.6.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2"
}
}