-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.32 KB
/
package.json
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
{
"name": "dotmobile",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "NODE_ENV=production tsc && vite build",
"preview": "vite preview",
"test.e2e": "playwright test",
"test.unit": "vitest",
"lint": "biome check --write --verbose src/**/* src/",
"build-ios": "ionic capacitor build ios --release --prod --no-open",
"build-android": "ionic capacitor build android --release --prod --no-open",
"ios": "npm run build && npm run sync && npx cap run ios",
"android": "npm run build && npx cap run android",
"sync": "cap sync",
"iconGenerate": "npx @capacitor/assets generate --iconBackgroundColor '#eeeeee' --iconBackgroundColorDark '#1E1F1D' --splashBackgroundColor '#eeeeee' --splashBackgroundColorDark '#1E1F1D'",
"updateAllPackages": "npx npm-check-updates -i",
"prepare": "husky install"
},
"dependencies": {
"@capacitor/android": "^6.1.0",
"@capacitor/app": "6.0.0",
"@capacitor/core": "^6.1.0",
"@capacitor/device": "^6.0.0",
"@capacitor/filesystem": "^6.0.0",
"@capacitor/haptics": "6.0.0",
"@capacitor/ios": "^6.1.0",
"@capacitor/keyboard": "6.0.1",
"@capacitor/preferences": "^6.0.1",
"@capacitor/status-bar": "6.0.0",
"@ionic/react": "^8.2.2",
"@ionic/react-router": "^8.2.2",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/video.js": "^7.3.58",
"capacitor-blob-writer": "^1.1.16",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"ionicons": "^7.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4"
},
"devDependencies": {
"@ionic/cli": "^7.2.0",
"@capacitor/cli": "^6.1.0",
"@biomejs/biome": "1.8.1",
"@capacitor/assets": "^3.0.5",
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@unocss/transformer-variant-group": "^0.61.0",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-react": "^4.3.1",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"terser": "^5.31.1",
"typescript": "^5.4.5",
"unocss": "^0.61.0",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"lint-staged": {
"*": "biome check --write --verbose src/**/* src/"
},
"description": "WA Sign language bibles app"
}