OPS: remove npx (closes #3078)

This commit is contained in:
Overtorment 2021-05-05 17:36:01 +01:00
parent 99cdd1b2e2
commit 1bf6b9c548

View file

@ -24,7 +24,6 @@
"eslint-plugin-react": "^7.20.3",
"flow-bin": "^0.134.0",
"jest": "^26.1.0",
"jetifier": "^1.6.3",
"react-test-renderer": "16.13.1"
},
"engines": {
@ -40,14 +39,14 @@
"android": "react-native run-android",
"android:clean": "cd android; ./gradlew clean ; cd .. ; npm run android",
"ios": "react-native run-ios",
"postinstall": "rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert,crypto --hack; npm run releasenotes2json; npm run podinstall; npx jetify",
"postinstall": "rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert,crypto --hack; npm run releasenotes2json; npm run podinstall",
"test": "npm run lint && npm run unit && npm run jest",
"jest": "jest -b -w 1 tests/integration/*",
"maccatalystpatches": "./scripts/maccatalystpatches/applypatchesformaccatalyst.sh",
"e2e:debug-build": "detox build -c android.emu.debug",
"e2e:debug-test": "detox test -c android.emu.debug",
"e2e:debug": "(test -f android/app/build/outputs/apk/debug/app-debug.apk && test -f android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk) || npm run e2e:debug-build; npm run e2e:debug-test",
"e2e:release-build": "npx detox build -c android.emu.release",
"e2e:release-build": "detox build -c android.emu.release",
"e2e:release-test": "detox test -c android.emu.release --record-videos all --take-screenshots all --headless --loglevel trace",
"lint": "eslint *.js screen/**/*.js blue_modules/*.js class/**/*.js models/ loc/ tests/**/*.js components/**/*.js",
"lint:fix": "npm run lint -- --fix",