-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.99 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
{
"name": "test-project",
"version": "2.0.0",
"description": "Test",
"main": "index.js",
"scripts": {
"compile": "npx truffle compile --all",
"ganache": "npx ganache-cli --gasLimit 6721975 --gasPrice 20000000000 -e 10000000 -p 8545 -a 20",
"test": "npx truffle test",
"generate-abi": "npx truffle-abi -o ./abi",
"dev:prettier": "npx prettier --write .",
"dev:prettier-check": "npx prettier --check .",
"dev:lint": "npx eslint . && npx solhint contracts/**/*.sol",
"dev:coverage": "npx truffle run coverage --network coverage --solcoverjs ./.solcover.js",
"dev:contract-size": "npx truffle run contract-size",
"dev:docgen": "npx solidity-docgen -i ./contracts -o ./docs -t docgen --solc-module solc -H docgen/helpers.js",
"dev:slither": "slither . --config-file slither-config.json",
"prettier:fix": "npx prettier --write \"contracts/**/*.sol\"",
"prettier:check": "npx prettier --check \"contracts/**/*.sol\"",
"postinstall": "npm run compile && npm run generate-abi",
"prepare": "husky install"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "CKO",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "4.2.0",
"@truffle/hdwallet-provider": "^1.4.1",
"dotenv": "^10.0.0",
"truffle": "^5.4.0",
"web3": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@openzeppelin/test-helpers": "^0.5.12",
"bignumber.js": "^9.0.0",
"chai": "^4.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eth-gas-reporter": "^0.2.22",
"ganache-cli": "^6.12.2",
"ganache-time-traveler": "^1.0.16",
"husky": "^7.0.1",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.15",
"solc": "0.8.6",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.13",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1"
}
}