-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 806 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 806 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
{
"name": "social-media-app",
"private": true,
"scripts": {
"build": "turbo run build",
"start": "pnpm --filter api start",
"clean": "turbo run clean",
"dev": "turbo run dev --no-cache --continue",
"debug": "turbo run debug --no-cache --continue",
"lint": "turbo run lint",
"format": "prettier --write --ignore-unknown --cache --cache-location=.prettiercache .",
"spell-check": "cspell --show-suggestions --relative --no-must-find-files --cache .",
"checks": "turbo lint format spell-check"
},
"devDependencies": {
"cspell": "^8.8.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"turbo": "^2.0.4"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown --cache --cache-location=.prettiercache"
]
},
"packageManager": "pnpm@9.3.0"
}