-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"name": "cryptocurrencytoken",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:kovan": "concurrently \"npm run ganache:kovan\" \"npm run migrate\"",
"start:rinkeby": "concurrently \"npm run ganache:rinkeby\" \"npm run migrate\"",
"start:ropsten": "concurrently \"npm run ganache:ropsten\" \"npm run migrate\"",
"ganache:kovan": "npm run ganache -- --fork \"https://kovan.infura.io/v3/$INFURA_PROJECT_ID\"",
"ganache:rinkeby": "npm run ganache -- --fork \"https://rinkeby.infura.io/v3/$INFURA_PROJECT_ID\"",
"ganache:ropsten": "npm run ganache -- --fork \"https://ropsten.infura.io/v3/$INFURA_PROJECT_ID\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1"
},
"devDependencies": {
"@openzeppelin/truffle-upgrades": "^1.15.0",
"truffle-hdwallet-provider": "^1.0.17"
}
}