-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.93 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
48
49
50
51
52
53
54
55
{
"name": "token-contracts",
"version": "1.0.0",
"description": "Token contracts.",
"main": "index.js",
"scripts": {
"testrpc": "ganache-cli --hardfork istanbul --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit 8000000 --gasPrice 0 --port 9545 --networkId 53227",
"template:process": "node scripts/process-templates.js",
"bor": "cd test-blockchain && bash run-docker.sh",
"bor:clean": "cd test-blockchain && bash stop-docker.sh",
"build": "npm run artifacts && npm run flatten",
"migrate": "npm run migrate:2 && npm run migrate:3 && npm run migrate:4 && npm run migrate:5",
"change-owners": "hardhat exec scripts/change-owners.js",
"test": "hardhat test",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/",
"debug": "hardhat debug",
"artifacts": "node scripts/generate-artifacts.js",
"flatten": "node scripts/flatten-contracts.js",
"test:ci": "scripts/run-test.sh",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/nextgenbt/sx-network/token-contracts.git"
},
"author": "",
"license": "MIT",
"config": {
"mnemonics": "clock radar mass judge dismiss just intact mind resemble fringe diary casino"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.1.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.4",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "2.5.1"
},
"dependencies": {
"dotenv": "^10.0.0",
"ganache-cli": "^6.9.1"
}
}