-
Notifications
You must be signed in to change notification settings - Fork 701
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "copilot-chat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"format": "prettier src --check",
"format:fix": "prettier src --write",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"serve": "serve -s build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@azure/msal-browser": "^3.27.0",
"@azure/msal-react": "^2.2.0",
"@fluentui/react-components": "^9.55.1",
"@fluentui/react-icons": "^2.0.265",
"@fluentui/react-northstar": "^0.66.5",
"@microsoft/signalr": "^8.0.7",
"@playwright/test": "^1.46.1",
"@reduxjs/toolkit": "^2.3.0",
"debug": "^4.3.7",
"microsoft-cognitiveservices-speech-sdk": "^1.41.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.2",
"remark-gfm": "^4.0.0"
},
"resolutions": {
"postcss": ">=8.4.31",
"nth-check": ">=2.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/debug": "^4.1.12",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"react-scripts": "^5.0.1",
"serve": "^14.2.3",
"typescript": "5.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 edge version",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}