-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "nuxbe-mobile",
"version": "1.0.8-beta",
"description": "Nuxbe Mobile - Native iOS & Android wrapper for Flux ERP PWA",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:ios": "npm run build && npx cap sync ios",
"build:android": "npm run build && npx cap sync android",
"preview": "vite preview",
"sync": "npx cap sync",
"sync:ios": "npx cap sync ios",
"sync:android": "npx cap sync android",
"open:ios": "npx cap open ios",
"open:android": "npx cap open android",
"add:ios": "npx cap add ios",
"add:android": "npx cap add android",
"generate:icons": "node scripts/generate-icons.mjs",
"screenshots": "node screenshots/take-screenshots.mjs"
},
"keywords": [
"capacitor",
"mobile",
"ios",
"android",
"flux-erp"
],
"author": "Team Nifty GmbH",
"license": "MIT",
"dependencies": {
"@capacitor/android": "^7.0.0",
"@capacitor/app": "^7.1.0",
"@capacitor/barcode-scanner": "^2.2.0",
"@capacitor/camera": "^7.0.2",
"@capacitor/core": "^7.0.0",
"@capacitor/device": "^7.0.2",
"@capacitor/filesystem": "^7.0.0",
"@capacitor/ios": "^7.0.0",
"@capacitor/preferences": "^7.0.2",
"@capacitor/push-notifications": "^7.0.3",
"@capacitor/share": "^7.0.0",
"@capacitor/splash-screen": "^7.0.3",
"@capacitor/status-bar": "^7.0.3"
},
"devDependencies": {
"@capacitor/cli": "^8.0.2",
"sharp": "^0.34.4",
"playwright": "^1.50.0",
"typescript": "^5.9.3",
"vite": "^7.0.0"
}
}