-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 791 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 791 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
{
"name": "browser-mfe-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "pnpm build:mfes && pnpm build:shell",
"build:mfes": "cd apps/mfe-header && pnpm build && cd ../mfe-one && pnpm build",
"build:shell": "cd apps/shell && pnpm build",
"preview": "concurrently \"cd apps/mfe-header && pnpm preview\" \"cd apps/mfe-one && pnpm preview\" \"cd apps/shell && pnpm preview\"",
"test": "playwright test",
"test:build": "pnpm install && pnpm build",
"test:assert": "pnpm test"
},
"devDependencies": {
"@playwright/test": "~1.56.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"concurrently": "^8.2.2"
},
"volta": {
"node": "20.19.2",
"yarn": "1.22.22",
"pnpm": "9.15.9"
}
}