-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.18 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": "fcc-uikit-monorepo",
"type": "module",
"version": "0.1.0",
"scripts": {
"prepare": "is-ci || husky",
"build": "turbo run build",
"build:pkgs": "turbo run build --filter=!@freecodecamp/uikit-docs",
"build:docs": "turbo run build --filter=@freecodecamp/uikit-docs",
"dev": "pnpm dev:docs",
"dev:docs": "pnpm --filter @freecodecamp/uikit-docs dev",
"dev:vanilla": "pnpm --filter @freecodecamp/uikit-js dev",
"preview": "turbo run preview --filter=@freecodecamp/uikit-docs",
"test": "turbo run test",
"test:unit": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch",
"test:playwright": "turbo run test:playwright --filter=@freecodecamp/uikit-docs",
"test:playwright:update": "turbo run test:playwright:update --filter=@freecodecamp/uikit-docs",
"test:visual": "pnpm test:playwright",
"test:visual:update": "pnpm test:playwright:update",
"lint": "turbo run lint",
"lint:fix": "oxlint --fix",
"typecheck": "turbo run typecheck",
"format": "oxfmt --write . && prettier --write \"**/*.{astro,md,mdx,yaml,yml}\"",
"format:check": "oxfmt --check . && prettier --check \"**/*.{astro,md,mdx,yaml,yml}\"",
"check:node-versions": "node scripts/check-node-versions.mjs",
"verify:registry": "pnpm build:docs && node apps/docs/scripts/verify-dist-pages-artefacts.mjs"
},
"devDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@vitest/coverage-v8": "4.1.5",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jsdom": "29.1.0",
"lint-staged": "16.4.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"tsx": "^4.21.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3",
"vitest": "4.1.5"
},
"lint-staged": {
"**/*.{js,jsx,mjs,cjs,ts,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"**/*.{json,jsonc}": [
"oxfmt --write"
],
"**/*.{astro,md,mdx,yaml,yml}": [
"prettier --write"
]
},
"private": true,
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22"
}
}