-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
34 lines (34 loc) · 1.5 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
{
"private": true,
"version": "1.4.0",
"name": "lily-wallet",
"author": "Lily Technologies, Inc. <[email protected]> (https://lily-wallet.com)",
"description": "Lily is the best way to secure your Bitcoin",
"license": "Custom",
"scripts": {
"electron": "npm run start -w @lily/electron",
"dev:electron": "npm run start-dev -w @lily/electron",
"frontend": "npm run start:dev -w @lily/frontend",
"dev:frontend:electron": "npm run start:dev:electron -w @lily/frontend",
"dev:frontend:umbrel": "npm run start:dev:umbrel -w @lily/frontend",
"dev:start": "npm run build:types && npm run build:shared-server && npm run build:electron && npm run dev:frontend:electron",
"express": "npm run start -w @lily/express",
"build:electron": "npm run build -w @lily/electron",
"build:frontend:electron": "npm run build:electron -w @lily/frontend",
"build:frontend:umbrel": "npm run build:umbrel -w @lily/frontend",
"build:express": "npm run build -w @lily/express",
"build:types": "npm run build -w @lily/types",
"release:umbrel": "docker buildx build --file Dockerfile --platform linux/arm64,linux/amd64 --tag kaybesee/lily-wallet:latest --output 'type=registry' .",
"build:shared-server": "npm run build -w @lily/shared-server",
"dist:electron": "npm run dist -w @lily/electron",
"pack:electron": "npm run pack -w @lily/electron"
},
"homepage": "./",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"typescript": "^4.5.4"
}
}