mirror of
https://github.com/Unirep/Unirep-Social.git
synced 2026-01-10 14:38:00 -05:00
33 lines
885 B
JSON
33 lines
885 B
JSON
{
|
|
"name": "root",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"install": "yarn bootstrap",
|
|
"bootstrap": "lerna bootstrap",
|
|
"build": "lerna run build",
|
|
"linkUnirep": "sh scripts/linkUnirep.sh",
|
|
"lint": "prettier .",
|
|
"lint:fix": "prettier . --write",
|
|
"lint:check": "prettier . --check",
|
|
"circuits": "yarn workspace @unirep-social/circuits run",
|
|
"core": "yarn workspace @unirep-social/core run",
|
|
"backend": "yarn workspace @unirep-social/backend run",
|
|
"frontend": "yarn workspace @unirep-social/frontend run"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"lerna": "^6.5.1"
|
|
},
|
|
"dependencies": {
|
|
"prettier": "^2.7.1"
|
|
},
|
|
"prettier": {
|
|
"tabWidth": 4,
|
|
"singleQuote": true,
|
|
"semi": false
|
|
}
|
|
}
|