Files
mattermost/webapp/package.json
M-ZubairAhmed 2119bc0901 MM-51974 : Unify "react-intl" related dependencies versions across products (#22894)
Picks out formatjs-eslint-plugin to webapp root. Updates react-intl to 6.3.2 in all products. Executed i18n-extract and checked if any translations got changed. Although it was a major version update, the only breaking change was for a vue peer dependency. Adds "*" to take whatever dependency rule to products and declare the react-intl as the root package. Fixes a few lint and type errors cropped in due to the update No-ID rule removed from playbooks in preparation for unifying practices across products. Lastly, a few missing translations in Playbooks added
2023-04-16 05:19:08 +05:30

40 lines
1.1 KiB
JSON

{
"name": "@mattermost/webapp",
"private": true,
"engines": {
"node": "16.10.0",
"npm": "7.24.0"
},
"scripts": {
"postinstall": "node scripts/skip_integrity_check.js && npm run build --workspace=platform/types --workspace=platform/client --workspace=platform/components",
"build": "node scripts/build.js",
"run": "node scripts/run.js",
"dev-server": "node scripts/dev-server.js",
"test": "npm run test --workspaces --if-present",
"check": "npm run check --workspaces --if-present",
"fix": "npm run fix --workspaces --if-present",
"check-types": "npm run check-types --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present"
},
"dependencies": {
"react-intl": "6.3.2"
},
"devDependencies": {
"blessed": "0.1.81",
"chalk": "4.1.2",
"concurrently": "7.6.0",
"cross-env": "7.0.3",
"eslint": "8.37.0",
"eslint-plugin-formatjs": "4.9.1",
"strip-ansi": "6.0.1"
},
"workspaces": [
"channels",
"platform/client",
"platform/components",
"platform/types",
"playbooks",
"boards"
]
}