-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2 KB
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
48
49
50
51
52
53
54
55
{
"name": "okarin",
"version": "0.1.0",
"private": true,
"description": "Professional podcast recording application with local high-quality recording",
"author": "Ugo ROSERAT",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.14.0",
"scripts": {
"dev": "pnpm --parallel --filter './apps/*' dev",
"dev:desktop": "pnpm --filter @okarin/desktop tauri:dev",
"dev:signaling": "pnpm --filter @okarin/signaling dev",
"build": "pnpm --filter @okarin/desktop build",
"build:desktop": "pnpm --filter @okarin/desktop build",
"build:signaling": "pnpm --filter @okarin/signaling build",
"tauri:build": "pnpm --filter @okarin/desktop tauri:build",
"tauri:dev": "pnpm --filter @okarin/desktop tauri:dev",
"lint": "eslint . --ext ts,tsx,js --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx,js --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx,css,html,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx,css,html,yml,yaml}\"",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"clean": "pnpm -r clean && rimraf node_modules",
"prepare": "husky install"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.1.0",
"rimraf": "^6.0.1",
"turbo": "^2.5.8",
"typescript": "^5.3.3",
"typescript-eslint": "^8.46.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix",
"*.{ts,tsx,js,jsx,json,md,mdx,css,html,yml,yaml}": "prettier --write"
}
}