-
Notifications
You must be signed in to change notification settings - Fork 573
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.85 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.85 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
{
"name": "Multi Agent frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@fluentui/merge-styles": "^8.6.14",
"@fluentui/react-components": "^9.64.0",
"@fluentui/react-icons": "^2.0.300",
"@reduxjs/toolkit": "^2.11.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.126",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"axios": "^1.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.12.0",
"rehype-prism": "^2.3.3",
"remark-gfm": "^4.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react-hooks/exhaustive-deps": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.5.1",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vite": "^7.1.2",
"vitest": "^3.2.4"
}
}