-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bimf",
"description": "Typed Micro-Frontend With Module Federation, Typescript and RSPack",
"version": "0.0.0",
"license": "MIT",
"private": true,
"author": "Billy Lando <billy_lando@yahoo.com>",
"scripts": {
"start": "nx run-many -t serve -p host remote-1",
"start:host": "nx serve host",
"start:remote-1": "nx serve remote-1",
"build": "nx run-many -t build --prod"
},
"dependencies": {
"@heroicons/react": "2.0.18",
"@module-federation/enhanced": "0.18.3",
"@module-federation/sdk": "0.9.0",
"@swc/helpers": "0.5.15",
"crossoriginworker": "1.1.0",
"jotai": "2.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.15.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@module-federation/native-federation-typescript": "^0.6.0",
"@nx/cypress": "22.0.2",
"@nx/eslint": "22.0.2",
"@nx/eslint-plugin": "22.0.2",
"@nx/jest": "22.0.2",
"@nx/js": "22.0.2",
"@nx/playwright": "22.0.2",
"@nx/react": "22.0.2",
"@nx/rollup": "22.0.2",
"@nx/rspack": "22.0.2",
"@nx/vite": "22.0.2",
"@nx/webpack": "22.0.2",
"@nx/workspace": "22.0.2",
"@playwright/test": "^1.36.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@rspack/core": "1.6.1",
"@rspack/dev-server": "1.1.4",
"@rspack/plugin-minify": "0.7.5",
"@rspack/plugin-react-refresh": "1.0.1",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.6.0",
"@swc/core": "1.5.7",
"@testing-library/react": "15.0.6",
"@types/jest": "30.0.0",
"@types/node": "22.12.0",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@vitest/ui": "2.1.8",
"babel-jest": "30.0.5",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-playwright": "^0.15.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "5.0.0",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-util": "30.0.5",
"nx": "22.0.2",
"prettier": "^2.6.2",
"react-refresh": "~0.14.0",
"ts-jest": "29.4.5",
"ts-loader": "9.5.0",
"ts-node": "10.9.1",
"typescript": "5.6.3",
"url-loader": "^4.1.1",
"vite": "7.2.1",
"vitest": "2.1.8",
"webpack": "5.101.3"
},
"overrides": {
"@vitest/mocker": {
"vite": "7.2.1"
}
}
}