forked from Unirep/create-unirep-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 931 Bytes
/
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
{
"name": "create-unirep-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"install": "lerna bootstrap",
"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 .",
"lint:fix": "prettier . --write",
"lint:check": "prettier . --check"
},
"devDependencies": {
"lerna": "^6.0.1",
"node-fetch": "^3.3.0"
},
"dependencies": {
"prettier": "^2.8.4"
}
}