forked from Emurgo/yoroi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.27 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "yoroi",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:Emurgo/yoroi.git",
"author": "EMURGO",
"workspaces": {
"packages": [
"packages/types",
"packages/openswap",
"packages/common",
"packages/api",
"packages/*",
"apps/*",
"e2e/*"
],
"nohoist": [
"**/chokidar-cli",
"**/concurrently",
"**/rimraf",
"**/lerna"
]
},
"scripts": {
"reset": "yarn clean && yarn install --frozen-lockfile && yarn wallet-mobile:reset && yarn build && yarn start",
"build": "yarn workspaces run build",
"clean": "yarn workspaces run rimraf node_modules && yarn rimraf node_modules",
"build:start": "yarn build && concurrently \"yarn watch\" \"yarn wallet-mobile:start\"",
"start": "concurrently \"yarn watch\" \"yarn wallet-mobile:start\"",
"wallet-mobile:start": "cd apps/wallet-mobile && yarn start",
"wallet-mobile:reset": "cd apps/wallet-mobile && yarn reset && cd ../..",
"watch": "chokidar \"packages/*/src/**/*\" -c \"yarn build:changed\"",
"build:changed": "lerna run build --since --ignore @yoroi/wallet-mobile"
},
"devDependencies": {
"concurrently": "^8.2.0",
"chokidar-cli": "^3.0.0",
"lerna": "^7.1.5",
"rimraf": "^5.0.1"
}
}