forked from animoca/revv-ethereum-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@animoca/revv-ethereum-contracts",
"version": "7.0.0",
"description": "REVV Solidity Contracts",
"author": "Animoca Brands",
"license": "MIT",
"keywords": [
"animoca",
"revv",
"ethereum",
"solidity",
"contracts"
],
"repository": {
"type": "git",
"url": "git@github.com:animoca/revv-ethereum-contracts.git"
},
"scripts": {
"postinstall": "bash -c 'for cfg in .vscode/settings.json .vscode/extensions.json .vscode/launch.json; do cp -n ${cfg}.default ${cfg} || :; done'",
"lint:js": "eslint \"**/*.{js,ts}\"",
"lint:sol": "solhint \"contracts/**/*.sol\"",
"lint": "run-s lint:js lint:sol",
"fix:js": "eslint --fix \"**/*.{js,ts}\"",
"fix:sol": "solhint --fix \"contracts/**/*.sol\"",
"fix": "run-s fix:js fix:sol",
"format:js": "prettier --write \"**/*.{ts,js}\"",
"format:sol": "prettier --write \"**/*.sol\"",
"format": "run-s format:js format:sol",
"compile": "hardhat compile --show-stack-traces",
"flatten": "hardhat flatten-all --show-stack-traces",
"test": "hardhat test --show-stack-traces",
"test-p": "hardhat test --parallel --show-stack-traces",
"coverage": "cross-env COVERAGE=true hardhat coverage --show-stack-traces",
"docgen:sol": "hardhat docgen --show-stack-traces",
"docgen": "run-s docgen:sol",
"clean:vscode": "rm -rf .vscode/extensions.json .vscode/launch.json .vscode/settings.json || :",
"clean:compile": "rm -rf cache || :",
"clean:artifacts:soft": "find artifacts/* | grep -v '^artifacts/build-info\\|^artifacts/contracts' | xargs rm -rf || :",
"clean:artifacts:hard": "rm -rf artifacts || :",
"clean:hardhat": "rm -rf hardhat.config.last.json || :",
"clean:flatten": "rm -rf flattened || :",
"clean:coverage": "rm -rf coverage coverage.json *.coverage || :",
"clean:doc": "rm -rf docs || :",
"clean": "run-p clean:compile clean:artifacts:soft clean:hardhat clean:flatten clean:coverage clean:doc",
"run-all": "run-s format fix clean clean:artifacts:hard compile docgen flatten test-p coverage",
"prepack": "run-s clean:artifacts:hard compile clean"
},
"devDependencies": {
"@animoca/ethereum-contract-helpers": "^0.0.1",
"@animoca/ethereum-contracts": "=2.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@openzeppelin/contracts": "=4.8.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-mocha": "^0.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"hardhat": "^2.12.6",
"hardhat-deploy": "^0.11.22",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.9",
"keccak256": "^1.0.6",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"merkletreejs": "^0.3.9",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1",
"solhint": "^3.3.8",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.6.0-beta.34"
}
}