-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"name": "@twitchtoolkit",
"private": true,
"version": "1.0.0",
"scripts": {
"postinstall": "husky install",
"compose": "docker-compose -f ./docker/docker-compose.yaml",
"c:u": "pnpm compose up",
"c:u:rebuild": "pnpm compose up --force-recreate --build",
"c:d": "pnpm compose down",
"c:ex": "pnpm compose exec tlk_website",
"lint:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"lint:ci": "prettier \"**/*.{js,jsx,ts,tsx,json,md,css}\" -c",
"types": "pnpm workspace @twitchtoolkit/types",
"control": "pnpm --filter @twitchtoolkit/control",
"website": "pnpm --filter @twitchtoolkit/website",
"dev": "turbo dev --filter=!@twitchtoolkit/control",
"build:website": "turbo build --filter=@twitchtoolkit/website",
"build:control": "rm -rf apps/control/dist apps/control/src-tauri/target && pnpm control tauri build"
},
"devDependencies": {
"husky": "~8.0.3",
"lint-staged": "~14.0.1",
"prettier": "~3.0.3",
"turbo": "1.10.12"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,html}": [
"prettier --write"
]
}
}