-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.44 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
{
"name": "microfrontends",
"version": "0.0.0",
"description": "Monorepo containing the @vercel/microfrontends package and examples.",
"bugs": {
"url": "https://github.com/vercel/microfrontends/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vercel/microfrontends"
},
"license": "MIT",
"scripts": {
"prepare": "husky && cp CLAUDE.md AGENTS.md && cp README.md packages/microfrontends/README.md",
"build": "turbo build",
"build:releasable": "turbo @vercel/microfrontends#build",
"build:single-spa-example": "turbo build -F single-spa-root -F single-spa-web -F single-spa-shared",
"changeset": "changeset",
"checks": "turbo run build lint test typecheck --continue",
"dev:nextjs-app": "VC_MICROFRONTENDS_CONFIG_FILE_NAME=microfrontends-custom.jsonc turbo dev -F nextjs-app-docs -F nextjs-app-marketing",
"dev:nextjs-pages": "turbo dev -F nextjs-pages-dashboard -F nextjs-pages-blog",
"dev:react-router": "turbo dev -F react-router-web -F react-router-docs -F react-router-vite-base-path-different-than-vercel-project-name",
"dev:single-spa": "turbo dev -F single-spa-root -F single-spa-web -F single-spa-shared",
"dev:sveltekit": "turbo dev -F sveltekit-web -F sveltekit-docs",
"format": "biome format --write",
"format:check": "biome format",
"lint": "turbo run lint --continue",
"lint:fix": "biome check --write",
"release": "pnpm build:releasable && changeset publish",
"start:single-spa-example": "turbo start -F single-spa-microfrontends-root -F single-spa-microfrontends-web -F single-spa-microfrontends-shared",
"test": "turbo test --continue",
"test:e2e": "turbo test:e2e",
"test:local-proxy-turbo-integration": "pnpm run -F internal-scripts test-local-proxy-start",
"typecheck": "turbo typecheck --continue",
"local-release": "node scripts/local-release.js",
"version-packages": "changeset version"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"resolutions": {
"sharp": "0.34.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@changesets/cli": "^2.27.12",
"@vercel/style-guide": "^6.0.0",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"syncpack": "^13.0.1",
"turbo": "2.6.0",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": "20.x",
"pnpm": "9.4.0"
}
}