-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.71 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
47
{
"name": "@coupling-tune-player/monorepo",
"version": "1.2.0",
"description": "Provide the justice audio! Play 2 audio files and analyze BPM and beat to sync.",
"main": "index.js",
"engines": {
"node": "10"
},
"scripts": {
"dev:desktop": "run-p --print-label dev:desktop:*",
"dev:desktop:desktop": " yarn workspace @coupling-tune-player/desktop start",
"dev:desktop:share": " yarn workspace @coupling-tune-player/share dev",
"dev:web": " run-p --print-label dev:web:*",
"dev:web:web": " yarn workspace @coupling-tune-player/web start",
"dev:web:share": " yarn workspace @coupling-tune-player/share dev",
"build:share": " yarn workspace @coupling-tune-player/share build",
"build:desktop:win32": " yarn workspace @coupling-tune-player/desktop make:win32",
"build:desktop:darwin": "yarn workspace @coupling-tune-player/desktop make:darwin",
"build:web:dev": " yarn workspace @coupling-tune-player/web build-dev",
"build:web:pro": " yarn workspace @coupling-tune-player/web build-pro",
"deploy:web:dev": " yarn workspace @coupling-tune-player/web deploy-dev",
"deploy:web:pro": " yarn workspace @coupling-tune-player/web deploy-pro"
},
"author": "TatsuyaYamamoto",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,ts,tsx,html,json}": "prettier --write"
},
"dependencies": {},
"devDependencies": {
"cross-env": "^7.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2"
}
}