mirror of
https://github.com/Zauktion/zauktion-core.git
synced 2026-01-09 21:58:10 -05:00
28 lines
746 B
JSON
28 lines
746 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"
|
|
},
|
|
"engines": {
|
|
"node": ">=16 <17"
|
|
}
|
|
}
|