-
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) · 2.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.52 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": "dev-config",
"private": true,
"packageManager": "pnpm@10.17.0",
"author": "m.doaie <m.doaie@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/pixpilot/dev-config",
"repository": {
"type": "git",
"url": "https://github.com/pixpilot/dev-config.git"
},
"engines": {
"node": ">=22.14.0",
"pnpm": ">=9.6.0"
},
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"tsc:watch": "pnpm exec tsc --noEmit --watch --project tsconfig.watch.json",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache && pnpm lint:root",
"lint:fix": "pnpm lint --fix && pnpm lint:root:fix",
"lint:root": "eslint .github *.config.{js,cjs,mjs,ts} *.json README.md --cache --cache-location .cache/.eslintcache",
"lint:root:fix": "pnpm lint:root --fix",
"lint:ws": "pnpm dlx sherif@latest",
"fix:all": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"postinstall": "pnpm lint:ws",
"test": "turbo run test",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage --config tooling/vitest/index.js",
"typecheck": "turbo run typecheck",
"clean:workspaces": "turbo run clean:all && git clean -xdf .cache .turbo",
"clean:workspaces:install": "pnpm clean:workspaces && pnpm install",
"deps:update": "npx taze -r -w && pnpm install",
"deps:update:major": "npx taze major -r -w && pnpm install",
"turbo:gen:init": "pnpm turbo gen init",
"changeset": "changeset",
"generate-packages-section": "node scripts/generate-packages-section.js"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@internal/prettier-config": "workspace:*",
"@pixpilot/workspace-package-generator": "^2.1.1",
"@turbo/gen": "^2.5.5",
"@types/node": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"@vitest/ui": "catalog:dev",
"eslint": "catalog:dev",
"glob": "catalog:prod",
"husky": "^9.1.7",
"jiti": "catalog:dev",
"lint-staged": "^16.1.5",
"prettier": "catalog:dev",
"rimraf": "^6.0.1",
"tsx": "catalog:dev",
"turbo": "^2.5.5",
"typescript": "catalog:dev",
"vitest": "catalog:dev"
},
"prettier": "@internal/prettier-config"
}