-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 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
66
67
68
69
70
71
72
{
"private": true,
"type": "module",
"scripts": {
"dev": "turbo dev --filter=@spotlightjs/spotlight",
"dev:website": "turbo dev --filter=@spotlightjs/website",
"dev:electron": "pnpm run --filter=@spotlightjs/spotlight dev:electron",
"build": "turbo build",
"preview": "turbo preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.4.0",
"typescript": "catalog:"
},
"pnpm": {
"overrides": {
"vite@>=6.0.0 <6.3.6": ">=6.3.6",
"tar": ">=7.5.11",
"h3": ">=1.15.6",
"@sveltejs/kit": ">=2.49.5",
"diff": ">=5.2.2",
"flatted": ">=3.4.2",
"yauzl@>=3.0.0": ">=3.2.1",
"devalue": ">=5.6.4",
"rollup@>=4.0.0": ">=4.59.0",
"minimatch@<4.0.0": "~3.1.4",
"minimatch@>=5.0.0 <6.0.0": "~5.1.8",
"minimatch@>=8.0.0 <9.0.0": "~8.0.6",
"minimatch@>=9.0.0 <10.0.0": "~9.0.7",
"ajv@<7.0.0": "~6.14.0",
"ajv@>=7.0.0-alpha.0 <9.0.0": "~8.18.0",
"path-to-regexp": "^6.3.0",
"cross-spawn": ">=7.0.5",
"form-data": ">=4.0.4",
"next": "^15.4.8",
"cookie": ">=0.7.0",
"esbuild": ">=0.25.0",
"brace-expansion": ">=2.0.2 <3",
"tmp": ">=0.2.4",
"js-yaml": ">=4.1.1",
"body-parser": ">=2.2.1",
"mdast-util-to-hast": ">=13.2.1",
"lodash": ">=4.17.23",
"qs": ">=6.14.2"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true",
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20"
},
"volta": {
"node": "24.11.1",
"pnpm": "9.15.9"
}
}