-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.65 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
{
"name": "knowledge-base",
"version": "1.0.0",
"description": "Knowledge base — wraps multiple doc apps into a single deployable",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "MP_HEADLESS=false astro dev",
"dev:headless": "MP_HEADLESS=true astro dev",
"dev:fetch": "node scripts/fetch-apps.js && MP_HEADLESS=false astro dev",
"build": "node scripts/build-vite.js",
"build:headless": "node scripts/build-vite.js --headless",
"build:local": "node scripts/build-vite.js --local",
"build:local:headless": "node scripts/build-vite.js --local --headless",
"preview": "astro preview",
"preview:local": "MP_HEADLESS=false astro preview",
"preview:local:headless": "MP_HEADLESS=true astro preview",
"preview:embedded": "MP_HEADLESS=true astro preview",
"test:apps": "node scripts/setup-test-apps.mjs",
"serve:test": "node tests/fragment-server.mjs",
"host:test": "node tests/host/server.mjs",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"test:container": "npx playwright test --config=playwright.config.docker.js"
},
"dependencies": {
"@fontsource-variable/inter": "^5.3.0",
"ajv": "^8.17.1",
"parse5": "^7.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.2",
"@types/node": "^26.0.1",
"astro": "^7.0.4",
"chokidar": "^5.0.0",
"express": "^5.2.1",
"tailwindcss": "^4.0.0",
"typescript": "^6.0.3",
"web-fragments": "^0.8.2"
}
}