-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.77 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
{
"name": "@unirep-app/contracts",
"version": "1.0.0",
"description": "Smart contracts of the Unirep Application",
"keywords": [],
"author": "Unirep social TW",
"license": "ISC",
"main": "build/src/index.js",
"repository": "https://github.com/social-tw/social-tw-website.git",
"scripts": {
"build": "yarn buildVerifier && hardhat compile && yarn abi",
"buildVerifier": "ts-node ./scripts/genVerifier.ts ",
"abi": "ts-node scripts/abi",
"hardhat": "hardhat",
"deploy": "hardhat run scripts/deploy.ts",
"test": "hardhat test --network hardhat",
"spawn-devnet": "ts-node ./scripts/spawnDevNet.ts",
"deploy:devnet": "yarn run spawn-devnet && hardhat run scripts/deploy.ts --network tenderly",
"deploy:dev": "hardhat run scripts/deploy.ts --network dev",
"deploy:prod": "hardhat run scripts/deploy.ts --network prod"
},
"bugs": {
"url": "https://github.com/social-tw/social-tw-website/issues"
},
"homepage": "https://github.com/social-tw/social-tw-website",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@openzeppelin/contracts": "^4.7.3",
"@tenderly/hardhat-tenderly": "^1.7.7",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/node": "^18.15.11",
"@unirep-app/circuits": "^1.1.0",
"@unirep/contracts": "2.1.5-alpha-1",
"envfile": "^6.18.0",
"hardhat": "^2.17.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.3"
},
"dependencies": {
"crypto": "^1.0.1",
"poseidon-lite": "^0.2.0",
"poseidon-solidity": "^0.0.3"
}
}