-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "dev-wiki",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:api": "turbo run test --filter=api",
"test:web": "turbo run test --filter=web",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.30.0",
"only-allow": "^1.2.1",
"prettier": "^3.6.2",
"turbo": "^2.5.4",
"typescript": "5.8.3",
"typescript-eslint": "^8.40.0",
"husky": "^9",
"lint-staged": "^15"
},
"lint-staged": {
"*.{sh,bash,sql,yml,yaml,env}": [
"bash -lc \"sed -i 's/\\r$//' $(git ls-files --cached)\"",
"bash -lc \"for f in $FILES; do tail -c1 \\\"$f\\\" | read r || echo >> \\\"$f\\\"; done\""
]
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"slugify": "^1.6.6"
}
}