-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2 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
{
"name": "asset-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"dev:frontend": "vite",
"dev:backend": "cross-env NODE_ENV=development nodemon backend/server.js",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"start": "node backend/src/server.js"
},
"dependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/core": "^8.1.0",
"@google/generative-ai": "^0.24.1",
"@paypal/checkout-server-sdk": "^1.0.3",
"@paypal/react-paypal-js": "^8.9.2",
"@supabase/supabase-js": "^2.95.3",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.24",
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^10.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.19.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.3",
"jsqr": "^1.4.0",
"lucide-react": "^0.563.0",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-microsoft": "^2.1.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"postcss": "^8.5.6",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-qr-barcode-scanner": "^2.1.23",
"react-qr-code": "^2.0.18",
"react-router-dom": "^7.13.0",
"sequelize": "^6.35.2",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1"
},
"devDependencies": {
"@capacitor/cli": "^8.1.0",
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"nodemon": "^3.0.2"
}
}