-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
27 lines (27 loc) · 1.17 KB
/
package.json
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
{
"name": "frontend-fundamentals",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"fundamentals/*"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"docs:dev": "yarn workspace @frontend-fundamentals/code-quality docs:dev",
"docs:build": "yarn workspace @frontend-fundamentals/code-quality docs:build",
"docs:preview": "yarn workspace @frontend-fundamentals/code-quality docs:preview",
"docs:bundle:dev": "yarn workspace @frontend-fundamentals/bundling docs:dev",
"docs:bundle:build": "yarn workspace @frontend-fundamentals/bundling docs:build",
"docs:bundle:preview": "yarn workspace @frontend-fundamentals/bundling docs:preview",
"postbuild": "mkdir -p dist/fundamentals/code-quality dist/fundamentals/bundling && cp -r fundamentals/code-quality/.vitepress/dist/* dist/fundamentals/code-quality/ && cp -r fundamentals/bundling/.vitepress/dist/* dist/fundamentals/bundling/",
"build": "yarn docs:build && yarn docs:bundle:build && yarn postbuild"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.11",
"markdown-it-footnote": "^4.0.0",
"typescript": "^5.6.3",
"vitepress": "^1.4.1"
}
}