-
-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
46 lines (46 loc) · 1.78 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
42
43
44
45
46
{
"name": "signal",
"version": "0.0.1",
"description": "A friendly music sequencer application for OS X and Windows.",
"scripts": {
"start": "turbo run dev --parallel",
"build": "npm run build:app && npm run build:static",
"build:app": "turbo build && cpx \"app/dist/**/*\" dist",
"build:static": "npm install --prefix static && npm run build --prefix static && cpx \"static/out/**/*\" dist",
"serve": "npx http-server dist",
"test": "turbo test",
"lint": "turbo lint",
"format": "turbo format",
"firebase": "npm --prefix functions run build && firebase emulators:start",
"firebase:deploy": "firebase deploy",
"dev:electron": "concurrently \"npm run dev:electron -w app\" \"npm run dev --prefix electron\"",
"build:electron": "npm run build:electron -w app && rimraf electron/dist_renderer && cpx \"app/dist/**/*\" electron/dist_renderer",
"package:electron:darwin": "npm run build:electron && npm run package:darwin --prefix electron",
"package:electron": "npm run build:electron && npm run package --prefix electron",
"make:electron": "npm run build:electron && npm run make:mas --prefix electron",
"make:darwin": "npm run build:electron && npm run make:darwin --prefix electron",
"make:win": "npm run build:electron && npm run make:win --prefix electron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryohey/signal.git"
},
"author": "ryohey",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryohey/signal/issues"
},
"homepage": "https://github.com/ryohey/signal/",
"private": true,
"devDependencies": {
"cpx": "^1.5.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"turbo": "^2.0.14"
},
"workspaces": [
"app",
"packages/*"
],
"packageManager": "npm@10.8.1"
}