-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1021 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1021 Bytes
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
{
"name": "content-generation-frontend",
"version": "1.0.0",
"description": "Frontend for Intelligent Content Generation Accelerator",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@fluentui/react-components": "^9.54.0",
"@fluentui/react-icons": "^2.0.245",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"typescript": "^5.5.2",
"vite": "^7.3.2"
}
}