-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.55 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
{
"name": "frequency-zen",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:gh-pages": "NODE_ENV=production vite build",
"build:mobile": "tsc && vite build --config vite.config.mobile.ts",
"preview": "vite preview",
"setup:mobile": "node scripts/init-capacitor.js",
"cap:sync": "cap sync",
"cap:open:android": "cap open android",
"cap:open:ios": "cap open ios",
"cap:run:android": "cap run android",
"cap:run:ios": "cap run ios",
"cap:build:android": "npm run build:mobile && cap sync android && cd android && if exist gradlew.bat (gradlew.bat assembleDebug) else (./gradlew assembleDebug)",
"cap:build:android:release": "npm run build:mobile && cap sync android && cd android && if exist gradlew.bat (gradlew.bat assembleRelease) else (./gradlew assembleRelease)",
"cap:build:android:bundle": "npm run build:mobile && cap sync android && cd android && if exist gradlew.bat (gradlew.bat bundleRelease) else (./gradlew bundleRelease)",
"android:update-version": "node scripts/update-android-version.js",
"android:check-keystore": "node scripts/check-keystore.js",
"android:compress-audio": "powershell -ExecutionPolicy Bypass -File scripts/compress-audio.ps1",
"postinstall": "node scripts/fix-admob-sdk35.cjs",
"check:setup": "node scripts/check-setup.js",
"icons:generate": "node scripts/create-app-icons.js",
"verify:frequencies": "node scripts/verify-frequencies.cjs",
"verify:playback": "node scripts/verify-playback.cjs"
},
"dependencies": {
"@capacitor-community/admob": "^7.2.0",
"@capacitor/android": "^5.7.8",
"@capacitor/app": "^5.0.6",
"@capacitor/core": "^5.5.1",
"@capacitor/splash-screen": "^5.0.6",
"@capacitor/status-bar": "^5.0.6",
"@react-three/drei": "^9.92.7",
"@react-three/fiber": "^8.15.11",
"framer-motion": "^10.16.16",
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.9.6",
"three": "^0.158.0",
"tone": "^14.7.77",
"zustand": "^4.4.7"
},
"devDependencies": {
"@capacitor/cli": "^5.7.8",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/three": "^0.158.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"sharp": "^0.34.5",
"typescript": "^5.2.2",
"vite": "^5.4.0"
}
}