-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "uptime-monitor",
"version": "1.0.0",
"description": "Zero Ping Uptime Monitor - Full Stack Application",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"install:all": "npm install && npm install --workspace=backend && npm install --workspace=frontend",
"start": "npm run build --workspace=frontend && npm run start --workspace=backend",
"build": "npm run build --workspace=frontend",
"dev": "concurrently \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\""
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3",
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"lucide-react": "^0.263.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.0.2",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.0.8",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}