-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "vite-node-react-elysia",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:frontend": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"dev:backend": "tsx watch backend/src/server.ts",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"start": "cross-env NODE_ENV=production tsx backend/src/server.ts"
},
"dependencies": {
"@elysiajs/node": "^1.4.5",
"@elysiajs/swagger": "^1.3.1",
"elysia": "^1.4.28",
"@elysiajs/eden": "^1.4.9",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"cross-env": "^10.1.0",
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"tsx": "^4.21.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.9"
}
}