-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.82 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "spectacular",
"version": "0.5.1",
"private": true,
"description": "SvelteKit monorepo template",
"keywords": [
"cli",
"components",
"ui",
"component",
"svelte",
"template",
"monorepo",
"turborepo",
"tailwind",
"tailwindcss",
"sveltekit"
],
"homepage": "https://chinthagunta.com/",
"bugs": {
"url": "https://github.com/xmlking/spectacular/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xmlking/spectacular.git"
},
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"//": "For tasks that you run frequently, you can write your turbo commands directly into your root package.json.",
"build": "turbo run build --affected",
"check": "turbo run check --parallel --affected",
"ci:release": "pnpm run prerelease && changeset publish",
"ci:snapshot": "pnpm prerelease && changeset version --snapshot preview && pnpm install && changeset publish --tag preview",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:version-status": "changeset status -v",
"clean": "git clean -xdf .DS_Store .nhost .turbo node_modules",
"cs": "changeset",
"dev:web": "turbo run dev --filter=web",
"dev:docs": "turbo run dev --filter=docs",
"dev:console": "turbo run dev --filter=console",
"dev:console:production": "turbo run dev:production --filter=console",
"format": "manypkg fix && biome format --write --reporter=summary",
"format:workspaces": "turbo run format --parallel --affected",
"lint": "manypkg check && biome lint",
"lint:cspell": "cspell lint -c .vscode/cspell.json **",
"lint:workspaces": "turbo run lint --parallel --affected",
"postinstall-FIXME": "manypkg check",
"prepare": "./scripts/init.sh",
"prerelease": "pnpm clean && pnpm install && turbo run build lint test --affected",
"test": "turbo run test --parallel --affected",
"test:unit:coverage": "turbo run test:unit:coverage --affected"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@dotenv-run/cli": "1.3.6",
"@manypkg/cli": "0.23.0",
"@markuplint/astro-parser": "4.6.13",
"@markuplint/svelte-parser": "4.7.3",
"@spectacular/biome-config": "workspace:*",
"@spectacular/typescript-config": "workspace:*",
"cspell": "8.16.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"markuplint": "4.11.3",
"turbo": "2.3.3",
"vitest": "2.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"overrides": {
"cross-spawn": ">=7.0.5",
"xstate": "4.38.3"
}
},
"manypkg": {
"defaultBranch": "main",
"ignoredRules": [
"ROOT_HAS_DEV_DEPENDENCIES"
]
}
}