-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "eth-staking-contracts",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:qlcchain/eth-staking-contracts.git",
"author": "QLC Chain Team",
"license": "MIT",
"keywords": [
"neo",
"ethereum",
"qlcchain",
"staking"
],
"scripts": {
"test": "npx truffle test",
"coverage": "COVERAGE=true npx truffle run coverage",
"compile": "npx truffle compile",
"deploy": "npx truffle migrate --network rinkeby",
"start": "npx ganache-cli -l 10000038 -i 1234 -e 100000 -a 10 -u 0 -g 1000000000 --allowUnlimitedContractSize -m \"$HDWALLET_MNEMONIC\"",
"flatten": "npx truffle-flattener ./contracts/QLCToken.sol > ./build/QLCToken_flatten.sol",
"version": "npx truffle version",
"extract-abis": "npx truffle-extract -o .abis",
"docs": "npx solidity-docgen -o docs -i contracts -s single",
"postpublish": "PACKAGE_VERSION=$(./scripts/package-version.sh) && git tag -ae v$PACKAGE_VERSION && git push --tags",
"solhint": "npx solhint -f table contracts/**/*.sol",
"prettier:solidity": "npx prettier --write contracts/**/*.sol"
},
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "3.0.0",
"@openzeppelin/truffle-upgrades": "^1.5.0"
},
"devDependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/test-helpers": "^0.5.10",
"@truffle/hdwallet-provider": "^1.2.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eth-gas-reporter": "^0.2.22",
"ganache-cli": "^6.12.2",
"husky": "^5.2.0",
"mkdirp": "^1.0.4",
"mocha-junit-reporter": "^2.0.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.6",
"solc": "0.8.2",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.11",
"truffle": "5.2.5",
"truffle-assertions": "^0.9.2",
"truffle-extract": "pooltogether/truffle-extract#2a57b6e63a8a2057aad0fec63ba255cd46e9ff1d",
"truffle-flattener": "^1.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:solidity",
"pre-push": "npm run prettier:solidity"
}
}
}