mirror of
https://github.com/AtHeartEngineer/zkp-app-boilerplate.git
synced 2026-01-09 13:27:54 -05:00
25 lines
703 B
JSON
25 lines
703 B
JSON
{
|
|
"name": "zkp-app-boilerplate",
|
|
"version": "0.1.0",
|
|
"description": "Boilerplate for zkp application",
|
|
"repository": "https://github.com/wanseob/zkp-app-boilerplate",
|
|
"author": "Wanseob Lim<email@wanseob.com>",
|
|
"workspaces": [
|
|
"app",
|
|
"circuits",
|
|
"contracts"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn build:circuits && yarn build:contracts",
|
|
"build:all": "yarn build:circuits && yarn build:contracts && yarn build:app",
|
|
"build:app": "yarn workspace app build",
|
|
"build:contracts": "yarn workspace contracts build",
|
|
"build:circuits": "yarn workspace circuits build",
|
|
"demo": "./demo.sh"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"ts-node": "^10.4.0"
|
|
}
|
|
}
|