Files
notesnook/apps/mobile/package.json

36 lines
1.4 KiB
JSON
Raw Normal View History

2022-08-10 18:15:58 +05:00
{
"name": "@notesnook/mobile",
2022-10-06 12:25:47 +05:00
"version": "2.2.3",
2022-08-10 18:15:58 +05:00
"private": true,
"license": "GPL-3.0-or-later",
2022-08-16 16:48:10 +05:00
"workspaces": [
"native/",
"app/"
],
2022-08-10 18:15:58 +05:00
"scripts": {
"postinstall": "patch-package",
"run-android": "cd native && react-native run-android --active-arch-only",
2022-08-29 16:19:17 +05:00
"run-ios": "cd native && react-native run-ios",
"start": "cd native && react-native start",
"repack": "cd native && react-native webpack-start",
"install-pods": "cd native/ios && pod install",
"build-ios": "cd native && detox build -c ios.sim.release",
"build-android": "cd native && detox build -c android.emu.release",
"e2e-android": "cd native && detox test --configuration android.emu.release --detectOpenHandles",
"e2e-ios": "cd native && detox test -c ios.sim.release --detectOpenHandles",
2022-09-28 18:03:37 +05:00
"bump": "cd native && npx react-native bump-version --skip-semver-for android",
2022-09-22 15:18:48 +05:00
"release-android": "cd native/android && GITHUB_RELEASE=true ENVFILE=.env.public ./gradlew assembleRelease --no-daemon",
2022-09-22 17:57:13 +05:00
"release-android-bundle": "cd native/android && ./gradlew bundleRelease --no-daemon"
2022-08-10 18:15:58 +05:00
},
"devDependencies": {
"patch-package": "^6.4.7",
"typescript": "^4.8.2"
2022-08-29 16:19:17 +05:00
},
"dependencies": {
"@notesnook/core": "*",
2022-08-30 16:59:43 +05:00
"@notesnook/editor": "*",
2022-09-14 13:28:07 +05:00
"@notesnook/editor-mobile": "*",
"react-native-actions-shortcuts": "^1.0.1",
"react-native-fingerprint-scanner": "https://github.com/ammarahm-ed/react-native-fingerprint-scanner.git"
2022-08-10 18:15:58 +05:00
}
2022-09-28 18:03:37 +05:00
}