-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 KB
/
package.json
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
{
"name": "simple-web-app",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": ".",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "tsc && vite build",
"preview": "vite preview",
"client": "vite --port 3000",
"server": "tsx src/server/index.ts"
},
"dependencies": {
"@types/react-select": "^5.0.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"lucide-react": "^0.460.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-select": "^5.8.3",
"recharts": "^2.13.3",
"tailwindcss": "^3.4.15",
"typescript": "^5.5.3",
"vite": "^5.4.2",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"tsx": "^4.7.1"
}
}