-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "llm-create2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:client": "vite",
"dev:server": "cd server && npm run dev",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"build:client": "tsc -b && vite build",
"build:server": "cd server && npm install && npm run build && cd ..",
"build": "npm run build:server && npm run build:client",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/react": "^3.23.0",
"@emotion/react": "^11.14.0",
"@tailwindcss/typography": "^0.5.19",
"axios": "^1.12.2",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"firebase": "^12.1.0",
"firebase-admin": "^13.6.0",
"nanoid": "^5.1.5",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"openai": "^5.20.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.7.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/express": "^5.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-plugin-svgr": "^4.3.0"
}
}