Monorepo for Aesthetic.Computer
aesthetic.computer
1{
2 "name": "ethereum",
3 "version": "1.0.0",
4 "description": "Smart contracts for aesthetic.computer",
5 "main": "index.js",
6 "scripts": {
7 "build": "npx hardhat compilenode",
8 "local:node": "npx hardhat node",
9 "local:console": "npx hardhat console --network localhost",
10 "local:deploy": "npx hardhat lwge:deploy --network localhost",
11 "local:mint": "f() { npx hardhat lwge:mint --from $1 --network localhost; };f",
12 "rinkeby:deploy": "npx hardhat lwge:deploy --network rinkeby",
13 "rinkeby:mint": "f() { npx hardhat lwge:mint --from $1 --network rinkeby; };f",
14 "rinkeby:verify": "f() { npx hardhat verify --network rinkeby $1; };f",
15 "ropsten:deploy": "npx hardhat lwge:deploy --network ropsten",
16 "ropsten:verify": "f() { npx hardhat verify --network ropsten $1; };f",
17 "ropsten:mint": "f() { npx hardhat lwge:mint --from $1 --network ropsten; };f",
18 "mainnet:console": "npx hardhat console --network mainnet",
19 "mainnet:balance": "npx hardhat lwge:balance --network mainnet",
20 "mainnet:deploy": "npx hardhat lwge:deploy --network mainnet",
21 "mainnet:verify": "f() { npx hardhat verify --network mainnet $1; };f",
22 "mainnet:mint": "f() { npx hardhat lwge:mint --from $1 --network mainnet; };f",
23 "test": "echo \"Error: no test specified\" && exit 1"
24 },
25 "keywords": [],
26 "author": "",
27 "license": "ISC",
28 "devDependencies": {
29 "@nomicfoundation/hardhat-toolbox": "^2.0.0",
30 "@nomiclabs/hardhat-etherscan": "^3.1.0",
31 "hardhat": "^2.11.2",
32 "mnemonics": "^1.1.3"
33 },
34 "dependencies": {
35 "@openzeppelin/contracts": "^4.7.3"
36 }
37}