-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 878 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 878 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": "micro-frontend-monorepo",
"private": true,
"scripts": {
"dev": "concurrently \"NEXT_PRIVATE_LOCAL_WEBPACK=true pnpm --filter host dev\" \"NEXT_PRIVATE_LOCAL_WEBPACK=true pnpm --filter remote-products dev\" \"NEXT_PRIVATE_LOCAL_WEBPACK=true pnpm --filter remote-cart dev\"",
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:e2e": "pnpm --filter host test:e2e",
"lint": "pnpm -r lint",
"type-check": "pnpm -r type-check"
},
"devDependencies": {
"@cypress/code-coverage": "^3.14.5",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"concurrently": "^8.2.2",
"cypress": "^14.5.4",
"cypress-real-events": "^1.14.0",
"jsdom": "^26.1.0",
"ts-jest": "^29.4.1",
"typescript": "^5.3.3"
},
"dependencies": {
"webpack": "^5.101.2"
}
}