forked from loreum-org/chamber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.25 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.25 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
62
63
64
{
"name": "@loreum/chamber",
"version": "beta-0.0.1",
"description": "Loreum Chambers are composable DAO governance contracts for EVMs.",
"author": "Loreum DAO LLC",
"license": "MIT",
"private": false,
"files": [
"/abis/*.json",
"/src/*.sol",
"/typechain"
],
"keywords": [
"loreum",
"NFT"
],
"engines": {
"node": ">=16"
},
"homepage": "https://loreum.org",
"bugs": "https://github.com/loreum-org/chamber/issues",
"repository": {
"type": "git",
"url": "https://github.com/loreum-org/chamber.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"setup": "git submodule update --init --recursive",
"chain": "hardhat node",
"compile": "hardhat compile && npm run compile:erc721 && npm run compile:erc20",
"compile:erc721": "npx hardhat compile --config ./lib/loreum-nft/hardhat.config.ts",
"compile:erc20": "npx hardhat compile --config ./lib/loreum-token/hardhat.config.ts",
"compile:force": "hardhat compile --force",
"cycle": "hardhat run --network localhost scripts/cycle.ts",
"deploy": "npm run deploy:erc721 && npm run deploy:erc20 && npm run deploy:local",
"deploy:local": "npx hardhat run ./scripts/deploy.ts --network localhost",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:mainnet": "npx hardhat run --network mainnet scripts/deploy.ts",
"deploy:erc721": "npx hardhat run --config ./lib/loreum-nft/hardhat.config.ts ./lib/loreum-nft/scripts/deploy.ts --network localhost",
"deploy:erc20": "npx hardhat run --config ./lib/loreum-token/hardhat.config.ts ./lib/loreum-token/scripts/deploy.ts --network localhost",
"test:forge": "forge test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^12.20.55",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ethers": "^5.6.4",
"hardhat": "^2.12.0",
"hardhat-abi-exporter": "^2.8.0",
"hardhat-preprocessor": "^0.1.5",
"ts-node": "^10.1.0",
"typechain": "^8.1.0",
"typescript": "^4.5.2"
}
}