-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.88 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
{
"name": "nuxt-mf",
"private": true,
"scripts": {
"build": "turbo run build",
"build:package": "pnpm --filter @module-federation/nuxt build",
"preview": "pnpm --filter @module-federation/nuxt build && turbo run preview",
"dev": "pnpm --filter @module-federation/nuxt build && turbo run dev",
"dev:host": "pnpm --filter @module-federation/nuxt build && turbo run dev --filter=nuxt-host",
"dev:remote": "pnpm --filter @module-federation/nuxt build && turbo run dev --filter=nuxt-remote",
"test": "node --test --test-concurrency=1 test/*.test.mjs",
"test:e2e": "playwright test --config=playwright.config.mjs",
"changeset": "changeset",
"changeset:status": "changeset status",
"format": "prettier --write \"packages/**/*.{ts,md,json}\" \"apps/**/*.{ts,vue,md,json}\" \"test/**/*.mjs\" \"e2e/**/*.mjs\" \"playwright.config.mjs\" \"docs/**/*.md\" \"*.{md,json}\" \".github/**/*.yml\"",
"format:check": "prettier --check \"packages/**/*.{ts,md,json}\" \"apps/**/*.{ts,vue,md,json}\" \"test/**/*.mjs\" \"e2e/**/*.mjs\" \"playwright.config.mjs\" \"docs/**/*.md\" \"*.{md,json}\" \".github/**/*.yml\"",
"pack:nuxt": "pnpm --filter @module-federation/nuxt run pack:dry",
"publish:nuxt": "pnpm --filter @module-federation/nuxt publish",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@playwright/test": "1.62.0",
"@changesets/cli": "^2.31.1",
"defu": "6.1.7",
"prettier": "^3.9.6",
"turbo": "^2.10.7",
"typescript": "6.0.3",
"vue-tsc": "^3.3.8"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": "^22.18.0 || ^24.11.0 || >=26.0.0"
},
"pnpm": {
"overrides": {
"ajv@<7": "6.14.0",
"brace-expansion@<2": "1.1.13",
"brace-expansion@>=2 <3": "2.0.3",
"flatted": "3.4.2",
"minimatch@<4": "3.1.4",
"minimatch@>=9 <10": "9.0.7",
"picomatch@<3": "2.3.2"
}
}
}