-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@loreum/loreum-nft",
"version": "0.1.6",
"description": "Loreum NFT Contracts",
"author": "Loreum",
"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/loreum-nft/issues",
"repository": {
"type": "git",
"url": "https://github.com/loreum-org/loreum-nft.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"setup": "git submodule update --init --recursive",
"chain": "hardhat node",
"compile": "hardhat compile",
"compile:force": "hardhat compile --force",
"cycle": "hardhat run --network localhost scripts/cycle.ts",
"deploy": "npx hardhat run --network localhost scripts/deploy.ts",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:mainnet": "npx hardhat run --network mainnet scripts/deploy.ts",
"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"
}
}