-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "nolandia",
"version": "1.0.0",
"description": "The Nolandia 2d multicolor metaverse",
"directories": {
"test": "test"
},
"scripts": {
"dev": "npm run deploy-contract && npm run frontend",
"init": "npm install && npm install --prefix frontend",
"network": " npx hardhat node",
"deploy-contract": "hardhat run scripts/deploy.js --network localhost",
"deploy-mumbai": "hardhat run scripts/deploy.js --network mumbai",
"deploy-ropsten": "hardhat run scripts/deploy.js --network ropsten",
"deploy-zkalpha": "hardhat run scripts/deploy.js --network zksync",
"frontend": "npm start --prefix frontend",
"frontend-lint": "npm run lint --prefix frontend",
"test": "hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nol13/nolandia.git"
},
"keywords": [
"hardhat",
"ethereum",
"hackathon"
],
"author": "Nolan Kaplan",
"license": "MIT",
"bugs": {
"url": "https://github.com/nol13/nolandia"
},
"homepage": "https://github.com/nol13/nolandia",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"chai": "^4.3.4",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.6.8",
"hardhat": "^2.9.9",
"husky": "^4.2.5",
"ts-node": "^10.4.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"base64-sol": "^1.1.0",
"dotenv": "^16.0.1"
}
}