-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.53 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
{
"name": "@micro-frontend-react/repo",
"version": "1.0.0",
"description": "Enable micro-frontend architecture on your react application",
"scripts": {
"init-project": "npm install",
"build": "lage build --no-cache",
"serve": "lage serve",
"serve:redux": "lage serve:redux",
"install:ee": "npm --prefix samples/sample-employee-experience install && npm link ./packages/microsoft-employee-experience --prefix samples/sample-employee-experience",
"serve:ee": "npm --prefix samples/sample-employee-experience run serve:ee",
"clean": "lage clean --no-cache",
"nuke": "npx rimraf **/package-lock.json **/node_modules && npm install && npm run clean",
"release": "lage release --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/micro-frontend-react.git"
},
"private": true,
"license": "MIT",
"devDependencies": {
"@azure/msal-browser": "^5.6.1",
"@fluentui/react": "^8.125.5",
"@microsoft/applicationinsights-web": "^3.3.11",
"@redux-devtools/extension": "^4.0.0",
"@types/enzyme": "^3.10.19",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.3.1",
"@types/redux-logger": "^3.0.13",
"@types/styled-components": "^5.1.36",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"axios": "^1.15.0",
"buffer": "^6.0.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"jest-trx-results-processor": "^3.0.2",
"lage": "^2.15.1",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^5.3.4",
"react-test-renderer": "^18.3.1",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.4.2",
"rimraf": "^6.1.3",
"styled-components": "^5.3.11",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"webpack": "5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"workspaces": [
"packages/*",
"samples/sample-react-*"
]
}