-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1012 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1012 Bytes
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": "angular-universal-ssr",
"description": "Angular Universal SSR with Module Federation",
"private": true,
"workspaces": [
"./client-app",
"./host-app"
],
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"start": "pnpm build:shell && pnpm build:client && pnpm start:shell & pnpm start:client",
"build:shell": "npm --prefix ./host-app run build:federation",
"start:shell": "npm --prefix ./host-app run serve:federation",
"build:client": "npm --prefix ./client-app run build:federation",
"start:client": "npm --prefix ./client-app run serve:federation",
"build": "pnpm --filter angular-universal-ssr_* build:federation",
"serve": "pnpm --filter angular-universal-ssr_* --parallel serve:federation",
"clean": "pnpm --filter angular-universal-ssr_* --parallel clean",
"e2e:ci": "pnpm run build && pnpm exec playwright test"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"wait-on": "7.2.0",
"concurrently": "8.2.2"
}
}