-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
29 lines (29 loc) · 1.02 KB
/
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
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.18.0"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3"
},
"packageManager": "yarn@4.5.1",
"scripts": {
"dev": "yarn workspace @webzjs/web-wallet run dev & yarn run snap:start",
"demo-wallet:serve": "yarn workspace @webzjs/demo-wallet run serve",
"demo-wallet:dev": "yarn run just:build-keys && yarn run snap:start & yarn run web-wallet:dev",
"demo-wallet:build": "yarn workspace @webzjs/demo-wallet run build",
"web-wallet:dev": "yarn workspace @webzjs/web-wallet run dev & yarn run snap:start",
"web-wallet:build": "yarn workspace @webzjs/web-wallet run build",
"test:e2e": "yarn workspace @webzjs/e2e-tests test",
"snap:start": "yarn workspace @webzjs/zcash-snap run start",
"snap:build": "yarn workspace @webzjs/zcash-snap run build",
"just:build": "just build",
"just:build-keys": "just build-keys"
}
}