-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.71 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.71 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
{
"name": "framework-tracker",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev:docs": "pnpm --filter @framework-tracker/docs dev",
"build:docs": "pnpm --filter @framework-tracker/docs build",
"preview:docs": "pnpm --filter @framework-tracker/docs preview",
"collect:stats": "pnpm --filter @framework-tracker/stats-generator collect",
"lint": "pnpm -r --parallel lint",
"lint:fix": "pnpm -r --parallel lint:fix",
"lint:all": "pnpm lint && for dir in packages/starter-* packages/app-*; do if [ -f \"$dir/eslint.config.js\" ] || [ -f \"$dir/eslint.config.mjs\" ]; then echo \"Linting $dir...\" && (cd \"$dir\" && npx eslint .); fi; done",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "pnpm -r --parallel type-check",
"type-check:all": "pnpm type-check && for pkg in packages/starter-* packages/app-*; do (cd \"$pkg\" && pnpm run --if-present type-check); done",
"install:all": "for pkg in packages/starter-* packages/app-*; do (cd \"$pkg\" && pnpm install --ignore-workspace); done",
"install:all:frozen": "for pkg in packages/starter-* packages/app-*; do (cd \"$pkg\" && pnpm install --frozen-lockfile --ignore-workspace); done",
"check:all": "pnpm install:all && pnpm format:check && pnpm lint:all && pnpm type-check:all",
"check:all:ci": "pnpm install:all:frozen && pnpm format:check && pnpm lint:all && pnpm type-check:all"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
}
}