-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "malmo-front",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky || true",
"preinstall": "pnpm dlx only-allow pnpm",
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "find . -type d -name .turbo -not -path '*/node_modules/*' -not -path '*/dist/*' -exec rm -rf {} +",
"env": "turbo run env",
"locale": "turbo run locale",
"lint": "turbo run lint",
"format": "turbo run format",
"prune": "turbo prune"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"eslint": "catalog:",
"husky": "^9",
"lint-staged": "^15",
"prettier": "catalog:",
"turbo": "^2",
"typescript": "catalog:"
},
"lint-staged": {
"apps/react/**/*.{js,mjs,ts,tsx}": [
"eslint --fix --config apps/react/eslint.config.js",
"prettier --write"
],
"apps/mobile/**/*.{js,mjs,ts,tsx}": [
"eslint --fix --config apps/mobile/eslint.config.js",
"prettier --write"
],
"packages/**/*.{js,mjs,ts,tsx}": [
"prettier --write"
],
"*.{json,yaml,yml}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"@tailwindcss/oxide",
"core-js-pure",
"esbuild",
"sharp"
],
"packageExtensions": {
"@tinymce/tinymce-react": {
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}
}
},
"packageManager": "pnpm@10.9.0"
}