-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "mukoko",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@mukoko/eslint-config": "workspace:*",
"eslint": "^10.0.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "^3.4.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings 0",
"prettier --check"
],
"*.{json,md,css}": [
"prettier --check"
]
},
"pnpm": {
"overrides": {
"flatted": ">=3.4.2",
"undici": ">=7.24.0",
"ajv": "^6.14.0",
"@eslint/eslintrc": ">=3.3.5",
"glob": ">=10.5.0",
"prismjs": ">=1.30.0"
}
}
}