-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.83 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.83 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
{
"private": true,
"name": "@micro-frontend-react/employee-experience-generator-template",
"version": "1.0.5",
"description": "",
"main": "index.js",
"author": "Microsoft Employee Experience Team",
"license": "UNLICENSED",
"scripts": {
"start": "webpack-dev-server",
"serve": "webpack-dev-server --mode development",
"clean": "rimraf public/bundles public/ocv public/index.html public/buildonce ",
"nuke": "npx rimraf **/node_modules **/package-lock.json && npm install",
"build": "webpack --mode production",
"test": "jest --config jest.config.js",
"lint": "eslint -c .eslintrc.js 'src/**'",
"ocv": "cd node_modules/@ms-ofb/officebrowserfeedback && copyfiles -af scripts/**/* ../../../public/ocv && copyfiles -af styles/**/* ../../../public/ocv && cd intl && copyfiles -a **/* ../../../../public/ocv/intl && cd ../../../..",
"postinstall": "npm run ocv"
},
"dependencies": {
"@azure/msal-browser": "^2.23.0",
"@microsoft/applicationinsights-web": "^2.8.6",
"@coherence-design-system/controls": "^4.0.6",
"@coherence-design-system/styles": "^1.4.4",
"@fluentui/date-time-utilities": "^8.5.0",
"@fluentui/style-utilities": "^8.6.5",
"@fluentui/react": "^8.64.2",
"@m365-admin/customizations": "^7.3.2",
"@micro-frontend-react/employee-experience": "^1.0.5",
"@microsoft/myhub_webauth_sdk": "^0.0.7-Preview",
"@ms-ofb/officebrowserfeedback": "^1.8.9",
"@uifabric/charting": "^4.20.12",
"@redux-devtools/extension": "^3.2.2",
"axios": "^0.26.1",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"react-redux": "^8.0.0-rc.0",
"react-router-dom": "^5.3.0",
"react-device-detect": "^2.2.2",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.5",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@testing-library/react-hooks": "^8.0.0",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"copyfiles": "^2.4.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"jest": "^27.5.1",
"jest-trx-results-processor": "^2.2.1",
"prettier": "^2.6.2",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}