-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.34 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
{
"name": "zktender",
"version": "1.0.0",
"description": "Sealed bid tender system using Blockchain and ZKP",
"scripts": {
"accounts": "npm run accounts -w @zktender/hardhat",
"node": "npm run node -w @zktender/hardhat",
"clean": "npm run clean -w @zktender/hardhat",
"compile:circuits": "npm run compile:circuits -w @zktender/hardhat",
"compile:contracts": "npm run compile:contracts -w @zktender/hardhat",
"coverage": "npm run coverage -w @zktender/hardhat",
"deploy:local": "npm run deploy:local -w @zktender/hardhat",
"deploy:mumbai": "npm run deploy:mumbai -w @zktender/hardhat",
"generate:proof": "npm run generate:proof -w @zktender/hardhat",
"setup:circom": "npm run setup:circom -w @zktender/hardhat",
"start:api": "npm run start:api -w @zktender/backend",
"test": "npm run test -w @zktender/hardhat",
"verify": "npm run verify -w @zktender/hardhat",
"version:fix": "npm run version:fix -w @zktender/hardhat",
"dev": "npm run dev -w @zktender/next-app",
"build": "npm run build -w @zktender/next-app",
"start": "npm run start -w @zktender/next-app",
"lint": "npm run lint -w @zktender/next-app"
},
"author": "UltimateRoman",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**"
]
}
}