-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
80 lines (80 loc) · 2.39 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
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
{
"name": "@micro-frontend-react/repo",
"version": "1.0.0",
"description": "Enable micro-frontend architecture on your react application",
"scripts": {
"init-project": "lerna bootstrap",
"build": "lage build --no-cache",
"serve": "lage serve",
"serve:redux": "lage serve:redux",
"serve:ee": "lage serve:ee",
"clean": "lage clean --no-cache",
"nuke": "npx rimraf **/package-lock.json **/yarn.lock **/yarn-error.log **/node_modules && yarn && yarn 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": "^2.32.2",
"@fluentui/react": "^8.105.2",
"@microsoft/applicationinsights-web": "^2.8.9",
"@redux-devtools/extension": "^3.2.5",
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"axios": "^1.3.1",
"buffer": "^6.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-junit": "^15.0.0",
"jest-trx-results-processor": "^3.0.1",
"lage": "^1.9.6",
"lerna": "^6.4.1",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^5.3.4",
"react-test-renderer": "^18.2.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.2",
"rimraf": "^4.1.2",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"workspaces": {
"packages": [
"packages/*",
"samples/*",
"extensions/*"
]
}
}