mirror of
https://github.com/NicoSerranoP/voteathon.git
synced 2026-01-09 20:58:01 -05:00
32 lines
930 B
JSON
32 lines
930 B
JSON
{
|
|
"name": "voteathon",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"install": "lerna bootstrap",
|
|
"postinstall": "sh scripts/installUnirep.sh",
|
|
"build": "lerna run build",
|
|
"circuits": "yarn workspace @unirep-app/circuits run",
|
|
"contracts": "yarn workspace @unirep-app/contracts run",
|
|
"frontend": "yarn workspace @unirep-app/frontend run",
|
|
"relay": "yarn workspace @unirep-app/relay run",
|
|
"start": "node scripts/start.mjs",
|
|
"linkUnirep": "sh ./scripts/linkUnirep.sh",
|
|
"copyUnirep": "sh ./scripts/copyUnirep.sh",
|
|
"lint": "prettier ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/react-dom": "^18.2.5",
|
|
"lerna": "^6.0.1",
|
|
"node-fetch": "^3.3.0"
|
|
},
|
|
"dependencies": {
|
|
"prettier": "^2.8.4"
|
|
}
|
|
}
|