-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.12 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
{
"name": "starter-kit",
"version": "1.0.0",
"description": "A starter kit for building zk DApps",
"scripts": {
"accounts": "npm run accounts -w @starter-kit/hardhat",
"node": "npm run node -w @starter-kit/hardhat",
"clean": "npm run clean -w @starter-kit/hardhat",
"compile:circuits": "npm run compile:circuits -w @starter-kit/hardhat",
"compile:contracts": "npm run compile:contracts -w @starter-kit/hardhat",
"coverage": "npm run coverage -w @starter-kit/hardhat",
"generate:proof": "npm run generate:proof -w @starter-kit/hardhat",
"setup:circom": "npm run setup:circom -w @starter-kit/hardhat",
"test": "npm run test -w @starter-kit/hardhat",
"verify": "npm run verify -w @starter-kit/hardhat",
"dev": "npm run dev -w @starter-kit/next-app",
"build": "npm run build -w @starter-kit/next-app",
"start": "npm run start -w @starter-kit/next-app",
"lint": "npm run lint -w @starter-kit/next-app"
},
"author": "UltimateRoman",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**"
]
}
}