mattermost-mobile/detox/package.json
Elias Nahum 784b05fe97
Upgrade Dependencies (#7299)
* upgrade reanimated

* update devDependencies

* upgrade react-intl

* update react-native and some dependencies

* update react-native-permissions

* update RN

* use Share sheet for Report a problem

* update Sentry

* remove step to downloadWebRTC

* update detox deps

* feedback review
2023-04-21 12:16:54 -04:00

61 lines
2.2 KiB
JSON

{
"name": "mattermost-mobile-e2e",
"description": "End-to-end testing for Mattermost Mobile",
"repository": "git@github.com:mattermost/mattermost-mobile.git",
"author": "Mattermost, Inc.",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-modules-commonjs": "7.21.2",
"@babel/plugin-transform-runtime": "7.21.4",
"@babel/preset-env": "7.21.4",
"@jest/test-sequencer": "29.5.0",
"@types/jest": "29.5.1",
"@types/tough-cookie": "4.0.2",
"@types/uuid": "9.0.1",
"aws-sdk": "2.1361.0",
"axios": "1.3.6",
"axios-cookiejar-support": "4.0.6",
"babel-jest": "29.5.0",
"babel-plugin-module-resolver": "5.0.0",
"client-oauth2": "4.3.3",
"deepmerge": "4.3.1",
"detox": "20.7.0",
"form-data": "4.0.0",
"jest": "29.5.0",
"jest-circus": "29.5.0",
"jest-cli": "29.5.0",
"jest-html-reporters": "3.1.4",
"jest-junit": "16.0.0",
"jest-stare": "2.5.0",
"junit-report-merger": "6.0.1",
"moment-timezone": "0.5.43",
"recursive-readdir": "2.2.3",
"sanitize-filename": "1.6.3",
"shelljs": "0.8.5",
"tough-cookie": "4.1.2",
"ts-jest": "29.1.0",
"tslib": "2.5.0",
"typescript": "5.0.4",
"uuid": "9.0.0",
"xml2js": "0.5.0"
},
"overrides": {
"detox": {
"jest": "^29.1.0"
}
},
"scripts": {
"e2e:android-create-emulator": "./create_android_emulator.sh",
"e2e:android-build": "detox build -c android.emu.debug",
"e2e:android-test": "detox test -c android.emu.debug",
"e2e:android-build-release": "detox build -c android.emu.release",
"e2e:android-test-release": "detox test -c android.emu.release --record-logs failing --take-screenshots failing",
"e2e:ios-test": "IOS=true detox test -c ios.sim.debug",
"e2e:ios-build-release": "detox build -c ios.sim.release",
"e2e:ios-test-release": "IOS=true detox test -c ios.sim.release --record-logs failing --take-screenshots failing",
"check": "npm run lint && npm run tsc",
"lint": "eslint --ignore-pattern node_modules --quiet .",
"start:webhook": "node webhook_server.js",
"tsc": "NODE_OPTIONS=--max_old_space_size=12000 tsc --noEmit"
}
}