-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "quizbun",
"version": "1.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"build-storybook": "storybook build",
"build:devtools": "DEVTOOLS=true astro build",
"check": "oxlint && bun run format && bun run stylelint:fix",
"check:astro": "bunx --package=typescript@6.0.3 --package=@astrojs/check@0.9.9 astro-check --root .",
"css:dts": "vite-css-modules 'src/**/*.module.css'",
"dev": "astro dev",
"dev:stop": "bun astro dev stop",
"e2e": "playwright test",
"e2e:report": "playwright show-report",
"e2e:ui": "playwright test --ui",
"format": "oxfmt --config .oxfmtrc.json --write",
"full-check": "bash scripts/full-check.sh",
"jscpd": "bunx jscpd .",
"jscpd:report": "open tmp/jscpd/jscpd-report.html",
"knip": "knip",
"lint": "oxlint --fix",
"mutate": "stryker run",
"mutate:file": "stryker run --mutate",
"mutate:incremental": "stryker run --incremental",
"mutate:report": "open tmp/stryker/mutation-report.html",
"postinstall": "bun install --cwd tools/sonarjs --frozen-lockfile",
"preview": "astro preview",
"quiz:sizes:check": "bun scripts/generate-quiz-image-sizes.ts --check",
"quiz:sizes:generate": "bun scripts/generate-quiz-image-sizes.ts",
"schema:check": "bun scripts/check-json-schema-drift.ts",
"schema:generate": "bun scripts/generate-json-schema.ts",
"skill:create-quiz:check": "bun scripts/generate-create-quiz-skill.ts --check",
"skill:create-quiz:generate": "bun scripts/generate-create-quiz-skill.ts",
"storybook": "storybook dev -p 6006",
"stylelint": "stylelint \"**/*.{css,astro}\"",
"stylelint:fix": "stylelint \"**/*.{css,astro}\" --fix",
"test": "vitest run",
"test:browser": "vitest run --project browser",
"test:unit": "vitest run --project unit",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"update:interactive": "npx npm-check-updates --interactive -u --packageManager bun --format group --cooldown 2",
"validate:docs-examples": "bun scripts/validate-doc-examples.ts",
"validate:public-quizzes": "bun scripts/validate-public-quizzes.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/react": "6.0.5",
"@astrojs/sitemap": "^3.7.4",
"@base-ui/react": "^1.8.0",
"@lucide/astro": "^1.45.0",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"astro": "7.3.2",
"astro-seo": "^1.2.0",
"classix": "^2.2.19",
"dom-serializer": "^3.1.1",
"domhandler": "^6.0.1",
"fuzzysort": "^4.0.2",
"htmlparser2": "^12.0.0",
"lucide-react": "^1.45.0",
"marked": "^18.0.12",
"prismjs": "^1.30.0",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"sanitize-html": "^2.17.7",
"typescript": "^7.0.2",
"zod": "^4.6.2"
},
"devDependencies": {
"@faker-js/faker": "^10.6.0",
"@playwright/test": "^1.63.0",
"@storybook/react-vite": "^10.6.0",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@types/bun": "^1.4.2",
"@types/sanitize-html": "^2.16.1",
"@vitejs/devtools": "^0.7.3",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/browser-playwright": "^5.0.0",
"eslint-plugin-playwright": "^2.12.0",
"eslint-plugin-react-you-might-not-need-an-effect": "^1.0.2",
"fake-indexeddb": "^6.2.5",
"knip": "^6.35.1",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"postcss-html": "^2.0.0",
"storybook": "^10.6.0",
"storybook-dark-mode": "^5.0.0",
"stylelint": "^17.15.0",
"stylelint-config-clean-order": "^10.0.0",
"stylelint-config-standard": "^40.0.0",
"vite": "^8.3.0",
"vite-css-modules": "^1.16.0",
"vitest": "^5.0.0",
"vitest-browser-react": "^2.3.0"
},
"engines": {
"node": ">=22.12.0"
},
"patchedDependencies": {
"@stryker-mutator/vitest-runner@10.0.0": "patches/@stryker-mutator%2Fvitest-runner@10.0.0.patch"
}
}