-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 3.06 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
{
"name": "@rlxyz/rlxyz-creator",
"common": {
"ethereum": "rlxyz.eth"
},
"description": "Repository that maintains core creator smart contracts for rlxyz",
"author": "Rhapsody Labs <gm@rhapsodylabs.xyz>",
"contributors": [
{
"name": "Jeevan Pillay",
"email": "jeevan@rhapsodylabs.xyz",
"url": "https://twitter.com/jeevanpillay"
}
],
"license": "MIT",
"version": "1.0.6",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhapsodylabs/rhapsody-creator.git"
},
"scripts": {
"reinstall": "rm -rf node_modules/ && rm -f yarn.lock && yarn",
"verify": "yarn hint && yarn test",
"hint": "solhint \"contracts/**/*.sol\"",
"test": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"test:gas": "REPORT_GAS=true yarn test",
"test:mythx": "mythx --api-key $MYTHX_KEY analyze --mode standard --remap-import @openzeppelin/=$(pwd)/node_modules/@openzeppelin/ --solc-version 0.8.9 ./contracts/token/RhapsodyCreator.sol",
"compile": "hardhat --show-stack-traces --max-memory 8192 compile",
"start": "echo 'Starting node for local testing....\n'; rm -rf deployments/localhost_31337; DISABLE_HARNESS=true hardhat node",
"publish:pkg": "yarn clean && env COMPILE_MODE=production yarn compile && scripts/prepack.sh && cd contracts/ && yarn prepare",
"deploy": "hardhat run \"scripts/0_deploy.js\" --network",
"deploy:post": "hardhat run \"scripts/1_postDeploy.js\" --network",
"deploy:start": "hardhat run \"scripts/2_start.js\" --network",
"deploy:verify": "hardhat run \"scripts/3_verify.js\" --network",
"clean": "rm -rf abis artifacts build .build-openzeppelin cache coverage coverage.json test-results.xml .cache-openzeppelin deployments/localhost deployments/localhost_*; mkdir abis",
"format": "prettier --write 'contracts/**/*.sol'"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"erc721a": "^3.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@rhapsodylabs/whitelist-merkler": "^0.0.5",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.4",
"hardhat-abi-exporter": "^2.7.2",
"hardhat-deploy": "^0.11.22",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.7",
"install": "^0.13.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"mocha": "^8.4.0",
"mocha-chai-jest-snapshot": "^1.1.2",
"npm": "^8.11.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.0.0",
"typescript": "^4.3.2"
},
"files": [
"**/*.sol",
"/build/contracts/*.json"
]
}