-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "smiley-food-app",
"private": false,
"version": "1.0.0",
"description": "A modern, full-stack food ordering application with real-time order tracking, admin dashboard, and payment integration",
"type": "module",
"author": "Your Name <your-email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/smiley-food-app.git"
},
"bugs": {
"url": "https://github.com/yourusername/smiley-food-app/issues"
},
"homepage": "https://github.com/yourusername/smiley-food-app#readme",
"keywords": [
"food-ordering",
"react",
"nodejs",
"express",
"postgresql",
"tailwindcss",
"pwa",
"restaurant",
"delivery"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "cd server && npm start",
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "cd server && npm run dev",
"client:dev": "vite --host --port 3000",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@react-navigation/native": "^7.1.17",
"@react-navigation/native-stack": "^7.3.25",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"framer-motion": "^11.0.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.344.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.5",
"pg": "^8.16.3",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-native-safe-area-context": "^5.6.0",
"react-native-screens": "^4.14.1",
"react-router-dom": "^7.8.1",
"sequelize": "^6.37.7",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"twilio": "^5.9.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"sequelize-cli": "^6.6.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^7.1.3"
}
}