-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "livevent",
"displayName": "livEvent",
"version": "2.0.0",
"description": "Aplicación para gestión de eventos y red social para promoción de artistas. Refactored to Next.js + Supabase.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:demo": "node scripts/build-demo.js",
"start": "next start",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Apache Cordova Team",
"license": "Apache-2.0",
"dependencies": {
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.105.3",
"cordova-android": "^11.0.0",
"cordova-clipboard": "^1.3.0",
"cordova-plugin-awesome-shared-preferences": "^0.1.0",
"cordova-plugin-badge": "^0.8.8",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-local-notification": "^0.9.0-beta.2",
"cordova-plugin-x-socialsharing": "git+https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git",
"cordova-plugin-x-toast": "^2.7.2",
"es6-promise-plugin": "^4.2.2",
"next": "^16.2.6",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"cordova": {
"plugins": {
"cordova-plugin-x-socialsharing": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-x-toast": {},
"cordova-plugin-local-notification": {},
"cordova-plugin-awesome-shared-preferences": {},
"cordova-clipboard": {}
},
"platforms": [
"android"
]
},
"devDependencies": {
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"cordova-plugin-whitelist": "^1.3.4",
"typescript": "^5.9.3"
}
}