-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 2.15 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
{
"name": "charged-particles",
"version": "0.4.2",
"keywords": [
"ethereum",
"nft",
"non-fungible",
"defi"
],
"engines": {
"node": ">=12.16.3",
"npm": ">=6.14.4"
},
"scripts": {
"reinstall": "rm -rf node_modules && rm -f yarn.lock && yarn clean && yarn clean-test && yarn",
"verify": "yarn hint && yarn test",
"clean": "rm -rf build cache",
"clean-test": "rm -rf deployments/buidlerevm_31337 test-results.xml",
"compile": "buidler --show-stack-traces --max-memory 8192 compile",
"test": "yarn clean-test && buidler test",
"hint": "solhint \"contracts/**/*.sol\"",
"coverage": "yarn clean && yarn clean-test && buidler compile && buidler coverage --network coverage --temp build; rm -rf cache",
"gas": "REPORT_GAS=true buidler test --network local",
"start": "buidler node --port 8545",
"deploy-local": "buidler deploy --network local",
"deploy-kovan": "buidler deploy --network kovan --export ./deployments-kovan.json",
"deploy-ropsten": "buidler deploy --network ropsten --export ./deployments-ropsten.json",
"gen-docs": "solidity-docgen -i contracts -o docs"
},
"dependencies": {},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-etherscan": "^1.3.3",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@opengsn/gsn": "^0.9.0",
"@openzeppelin/cli": "^2.8.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/upgrades": "^2.8.0",
"@resolver-engine/core": "^0.3.3",
"@truffle/hdwallet-provider": "^1.0.34",
"buidler-deploy": "^0.4.5",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.10.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.3",
"ganache-cli": "^6.9.0",
"husky": "^4.2.5",
"lodash": "^4.17.15",
"mocha-junit-reporter": "^2.0.0",
"openzeppelin-solidity": "^2.4.0",
"oz-console": "^2.0.1",
"solc": "0.6.4",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.4",
"solidity-docgen": "^0.5.3"
}
}