-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 KB
/
package.json
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
{
"name": "mf-mixing-experiments",
"version": "1.0.0",
"private": true,
"description": "",
"workspaces": [
"vite",
"webpack",
"rspack",
"webpack-native",
"cross-utils",
"mixed-remote-modules-collection",
"shared-package"
],
"main": "index.js",
"scripts": {
"build:mixed": "npm run build -w mixed-remote-modules-collection",
"serve:mixed": "npm run serve -w mixed-remote-modules-collection",
"dev:rspack": "npm run dev -w rspack",
"dev": "npm run build:mixed && concurrently \"npm run serve:mixed\" \"npm run dev:rspack\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext ts,tsx,js ./vite/src/**/* ./webpack/src/**/* ./rspack/src/**/*"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.3",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.6"
}
}