-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.44 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.44 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "km-app",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"yarn run start\" \"yarn run server-mocks\"",
"start": "vite --port 5900",
"server-mocks": "nodemon --watch mocks ./mocks/app --ignore 'dist/*'",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage --detectOpenHandles"
},
"dependencies": {
"@azure/msal-browser": "^2.39.0",
"@azure/msal-react": "^1.5.13",
"@fluentai/attachments": "^0.7.1",
"@fluentai/react-copilot": "^0.11.3",
"@fluentai/react-copilot-chat": "^0.5.2",
"@fluentai/reference": "^0.8.2",
"@fluentai/textarea": "^0.5.1",
"@fluentui/react": "^8.122.11",
"@fluentui/react-components": "^9.60.0",
"@fluentui/react-datepicker-compat": "^0.5.0",
"@fluentui/react-file-type-icons": "^8.12.8",
"@fluentui/react-icons": "^2.0.274",
"@fluentui/react-tags-preview": "^0.4.0",
"@microsoft/applicationinsights-react-js": "^17.3.5",
"@microsoft/applicationinsights-web": "^3.3.5",
"@react-pdf-viewer/core": "^3.12.0",
"@react-pdf-viewer/default-layout": "^3.12.0",
"date-fns": "^4.1.0",
"dropzone": "^6.0.0-beta.2",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-http-backend": "^3.0.2",
"km-app": "file:",
"marked": "^15.0.7",
"notistack": "^3.0.2",
"pdfjs-dist": "^4.7.76",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.5",
"react-i18next": "^15.4.1",
"react-markdown": "^10.0.1",
"react-router-dom": "^7.2.0",
"react-tiff": "^0.0.14",
"react-uploader": "^3.43.0",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.14",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-basic-ssl": "^2.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"body-parser": "^1.20.3",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^10.0.2",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.16",
"express": "^4.21.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.9",
"postcss": "^8.4.49",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-tiff": "^0.0.14",
"sass": "^1.85.1",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.8.2",
"vite": "^6.2.3"
},
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
}
}