forked from x6eull/mobile-nx
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.02 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
{
"name": "mobile-nx",
"version": "0.1.0",
"webVersion": ">=0.1.0",
"androidVersion": ">=1.0.0",
"iosVersion": ">=1.0.0",
"browserslist": [
"Android >= 80",
"ChromeAndroid >= 80",
"last 2 versions",
"not dead"
],
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write .",
"dev": "vite",
"build": "vite build",
"build-bundle": "tsx scripts/build-bundle.ts",
"lint": "tsc && eslint .",
"dev-android": "ionic cap run android --external --livereload"
},
"dependencies": {
"@capacitor/android": "^7.0.1",
"@capacitor/app": "^7.0.0",
"@capacitor/core": "^7.0.1",
"@capacitor/device": "^7.0.0",
"@capacitor/filesystem": "^7.0.0",
"@capacitor/ios": "^7.0.1",
"@capacitor/preferences": "^7.0.0",
"@capgo/capacitor-updater": "^7.0.32",
"@ionic/react": "^8.4.1",
"@ionic/react-router": "^8.4.3",
"@use-gesture/react": "^10.3.1",
"bigint-mod-arith": "^3.3.1",
"core-js": "^3.41.0",
"dayjs": "^1.11.13",
"ionicons": "^7.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semver": "^7.7.1",
"swiper": "^11.2.6",
"zod": "^3.24.2"
},
"devDependencies": {
"@capacitor/cli": "^7.0.1",
"@eslint/js": "^9.20.0",
"@ionic/cli": "^7.2.1",
"@rollup/plugin-alias": "^5.1.1",
"@types/archiver": "^6.0.3",
"@types/node": "^22.13.8",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@types/semver": "^7.5.8",
"@vitejs/plugin-react-swc": "^3.8.0",
"archiver": "^7.0.1",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"postcss-preset-env": "^10.1.5",
"prettier": "^3.5.2",
"rollup": "^4.36.0",
"rollup-plugin-dts": "^6.1.1",
"tough-cookie": "^5.1.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.3.4",
"vite-plugin-svgr": "^4.3.0"
}
}