Files
mattermost-mobile/detox/package.json
Elias Nahum 77b0851213 Update Dependencies (#7140)
* upgrade android dependencies

* upgrade iOS dependencies

* Enable network plugin in flipper for Android

* update JS dependencies
2023-02-16 11:20:31 +02:00

62 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.20.11",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@jest/test-sequencer": "29.4.3",
"@types/jest": "29.4.0",
"@types/tough-cookie": "4.0.2",
"@types/uuid": "9.0.0",
"aws-sdk": "2.1315.0",
"axios": "1.3.3",
"axios-cookiejar-support": "4.0.6",
"babel-jest": "29.4.3",
"babel-plugin-module-resolver": "5.0.0",
"client-oauth2": "4.3.3",
"deepmerge": "4.3.0",
"detox": "20.1.3",
"form-data": "4.0.0",
"jest": "29.4.3",
"jest-circus": "29.4.3",
"jest-cli": "29.4.3",
"jest-html-reporters": "3.1.3",
"jest-junit": "15.0.0",
"jest-stare": "2.5.0",
"junit-report-merger": "4.0.0",
"moment-timezone": "0.5.40",
"recursive-readdir": "2.2.3",
"sanitize-filename": "1.6.3",
"shelljs": "0.8.5",
"tough-cookie": "4.1.2",
"ts-jest": "29.0.5",
"tslib": "2.5.0",
"typescript": "4.9.5",
"uuid": "9.0.0",
"xml2js": "0.4.23"
},
"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-path .gitignore --ignore-pattern node_modules --quiet .",
"start:webhook": "node webhook_server.js",
"tsc": "NODE_OPTIONS=--max_old_space_size=12000 tsc --noEmit"
}
}