-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.38 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.38 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
{
"//": [
"--------------------------------------------------------------------",
" Xoco POS — Point of Sale System",
" Software Property of Xoco Café",
" Copyright (c) 2025 Xoco Café",
" Principal Developer: Donovan Riaño",
"",
" Licensed under the Apache License, Version 2.0 (the \"License\");",
" you may not use this file except in compliance with the License.",
" You may obtain a copy of the License at:",
" http://www.apache.org/licenses/LICENSE-2.0",
"",
" Unless required by applicable law or agreed to in writing, software",
" distributed under the License is distributed on an \"AS IS\" BASIS,",
" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
" See the License for the specific language governing permissions and",
" limitations under the License.",
"",
" --------------------------------------------------------------------",
" PROPIEDAD DEL SOFTWARE — XOCO CAFÉ.",
" Sistema Xoco POS — Punto de Venta.",
" Desarrollador Principal: Donovan Riaño.",
"",
" Este archivo está licenciado bajo Apache License 2.0.",
" Consulta el archivo LICENSE en la raíz del proyecto para más detalles.",
"--------------------------------------------------------------------"
],
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8000",
"build": "next build",
"start": "next start",
"lint": "eslint",
"sync:sqlite": "node scripts/sync-supabase-sqlite.mjs",
"sync:supabase-sqlite": "npm run sync:sqlite"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.0",
"@zxing/browser": "^0.1.5",
"@zxing/library": "^0.21.3",
"bcryptjs": "^3.0.3",
"html-to-image": "^1.11.13",
"jsonwebtoken": "^9.0.3",
"next": "14.2.5",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "^3.6.0",
"sqlite3": "^5.1.7",
"xlsx": "^0.18.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.18",
"baseline-browser-mapping": "^2.9.14",
"eslint": "8.57.1",
"eslint-config-next": "14.2.5",
"postcss": "^8.4.38",
"tailwindcss": "3.4.15",
"typescript": "^5"
}
}