-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 952 Bytes
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
{
"name": "chapter",
"version": "0.3.0",
"private": true,
"description": "Self-hosted reading and audiobook sync system",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": "prettier --write"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.2.4",
"turbo": "^1.11.3",
"typescript": "^5.3.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"prisma",
"@prisma/client",
"@prisma/engines"
]
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"author": "",
"license": "GPL-2.0"
}