-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ctr-token",
"version": "1.0.0",
"description": "Token of CreatorChain",
"main": "index.js",
"scripts": {
"start": "docker run --name eth-node --detach --publish 8545:8545 trufflesuite/ganache-cli:latest",
"reset": "docker container rm -f eth-node && yarn start",
"start-local": "npx hardhat node",
"start-local-tf": "npx ganache-cli --deterministic",
"start-docker": "docker run --detach --publish 8545:8545 trufflesuite/ganache-cli:latest",
"deploy-token": "npx hardhat run --network development ./scripts/deployCtrToken.js",
"deploy-token-testnet": "npx hardhat run --network ropsten ./scripts/deployCtrToken.js",
"test": "npx hardhat test --network development",
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"test-tf": "npx truffle test --network development",
"compile-tf": "npx truffle compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CreatorChain/creator-token.git"
},
"keywords": [],
"author": "Jack",
"license": "ISC",
"bugs": {
"url": "https://github.com/CreatorChain/creator-token/issues"
},
"homepage": "https://www.creatorchain.network",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"openzeppelin-solidity": "4.2.0",
"@openzeppelin/test-helpers": "^0.5.10",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ethers": "^5.0.4",
"ganache-cli": "^6.12.2",
"hardhat": "^2.2.0",
"web3": "^1.2.4",
"web3-utils": "^1.2.4"
}
}