-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 992 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 992 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
{
"name": "next-mtf-wiki",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"deploy": "turbo run deploy",
"cleanup": "rm -rf apps/wiki/.next && rm -rf .turbo",
"lint": "biome check",
"format": "biome format",
"prepare": "simple-git-hooks install",
"update-source": "git submodule update --remote source"
},
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.9.1",
"lint-staged": "^17.0.5",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.9.14"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}