|
|
|
|
@ -1,224 +1,69 @@ |
|
|
|
|
{ |
|
|
|
|
"name": "@rocket.chat/meteor", |
|
|
|
|
"description": "The Ultimate Open Source WebChat Platform", |
|
|
|
|
"version": "7.14.0-develop", |
|
|
|
|
"private": true, |
|
|
|
|
"type": "commonjs", |
|
|
|
|
"author": { |
|
|
|
|
"name": "Rocket.Chat", |
|
|
|
|
"url": "https://rocket.chat/" |
|
|
|
|
}, |
|
|
|
|
"description": "The Ultimate Open Source WebChat Platform", |
|
|
|
|
"keywords": [ |
|
|
|
|
"rocketchat", |
|
|
|
|
"rocket", |
|
|
|
|
"chat" |
|
|
|
|
], |
|
|
|
|
"bugs": { |
|
|
|
|
"url": "https://github.com/RocketChat/Rocket.Chat/issues", |
|
|
|
|
"email": "support@rocket.chat" |
|
|
|
|
}, |
|
|
|
|
"repository": { |
|
|
|
|
"type": "git", |
|
|
|
|
"url": "https://github.com/RocketChat/Rocket.Chat.git" |
|
|
|
|
}, |
|
|
|
|
"license": "MIT", |
|
|
|
|
"author": { |
|
|
|
|
"name": "Rocket.Chat", |
|
|
|
|
"url": "https://rocket.chat/" |
|
|
|
|
}, |
|
|
|
|
"type": "commonjs", |
|
|
|
|
"scripts": { |
|
|
|
|
"start": "meteor", |
|
|
|
|
".testunit:definition": "mocha --config ./.mocharc.definition.js", |
|
|
|
|
".testunit:jest": "TZ=UTC TS_NODE_COMPILER_OPTIONS='{\"allowJs\": false}' jest", |
|
|
|
|
".testunit:server": "mocha --config ./.mocharc.js", |
|
|
|
|
".testunit:server:cov": "nyc -r text -r lcov mocha --config ./.mocharc.js", |
|
|
|
|
"build:ci": "METEOR_DEBUG_BUILD=1 METEOR_DISABLE_OPTIMISTIC_CACHING=1 meteor build --verbose --server-only --directory /tmp/dist", |
|
|
|
|
"coverage": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' nyc -r html mocha --config ./.mocharc.js", |
|
|
|
|
"debug": "meteor run --inspect", |
|
|
|
|
"debug-brk": "meteor run --inspect-brk", |
|
|
|
|
"dev": "NODE_OPTIONS=\"--trace-warnings\" meteor --exclude-archs \"web.browser.legacy, web.cordova\"", |
|
|
|
|
"docker:start": "docker-compose up", |
|
|
|
|
"dsv": "meteor npm run dev", |
|
|
|
|
"eslint": "NODE_OPTIONS=\"--max-old-space-size=8192\" eslint --ext .js,.jsx,.ts,.tsx . --cache", |
|
|
|
|
"eslint:fix": "yarn eslint --fix", |
|
|
|
|
"ha": "meteor npm run ha:start", |
|
|
|
|
"ms": "TRANSPORTER=${TRANSPORTER:-TCP} meteor npm run dev", |
|
|
|
|
"ha:start": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' ts-node .scripts/run-ha.ts main", |
|
|
|
|
"ha:add": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' ts-node .scripts/run-ha.ts instance", |
|
|
|
|
"migration:add": "ts-node-transpile-only --skip-project .scripts/make-migration.ts", |
|
|
|
|
"debug": "meteor run --inspect", |
|
|
|
|
"debug-brk": "meteor run --inspect-brk", |
|
|
|
|
"ha:start": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' ts-node .scripts/run-ha.ts main", |
|
|
|
|
"lint": "yarn stylelint && yarn eslint", |
|
|
|
|
"eslint": "NODE_OPTIONS=\"--max-old-space-size=8192\" eslint --ext .js,.jsx,.ts,.tsx . --cache", |
|
|
|
|
"eslint:fix": "yarn eslint --fix", |
|
|
|
|
"migration:add": "ts-node-transpile-only --skip-project .scripts/make-migration.ts", |
|
|
|
|
"ms": "TRANSPORTER=${TRANSPORTER:-TCP} meteor npm run dev", |
|
|
|
|
"obj:dev": "TEST_MODE=true yarn dev", |
|
|
|
|
"prepare": "node playwright.prepare.mjs", |
|
|
|
|
"release": "meteor yarn set-version --silent", |
|
|
|
|
"set-version": "node .scripts/set-version.js", |
|
|
|
|
"start": "meteor", |
|
|
|
|
"storybook": "storybook dev -p 6006 --no-version-updates", |
|
|
|
|
"stylelint": "stylelint \"app/**/*.css\" \"client/**/*.css\"", |
|
|
|
|
"stylelint:fix": "stylelint --fix \"app/**/*.css\" \"client/**/*.css\"", |
|
|
|
|
"typecheck": "meteor lint && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" tsc --noEmit --skipLibCheck", |
|
|
|
|
"coverage": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' nyc -r html mocha --config ./.mocharc.js", |
|
|
|
|
"test": "yarn testunit && yarn testapi", |
|
|
|
|
"test:e2e": "playwright test", |
|
|
|
|
"test:e2e:federation": "playwright test --config=playwright-federation.config.ts", |
|
|
|
|
"test:e2e:nyc": "nyc report --reporter=lcovonly", |
|
|
|
|
"testapi": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha --config ./.mocharc.api.js", |
|
|
|
|
"testunit": "yarn .testunit:definition && yarn .testunit:jest && yarn .testunit:server:cov", |
|
|
|
|
".testunit:server": "mocha --config ./.mocharc.js", |
|
|
|
|
".testunit:server:cov": "nyc -r text -r lcov mocha --config ./.mocharc.js", |
|
|
|
|
".testunit:jest": "TZ=UTC TS_NODE_COMPILER_OPTIONS='{\"allowJs\": false}' jest", |
|
|
|
|
".testunit:definition": "mocha --config ./.mocharc.definition.js", |
|
|
|
|
"testunit-watch": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha --watch --config ./.mocharc.js", |
|
|
|
|
"test": "yarn testunit && yarn testapi", |
|
|
|
|
"version": "node .scripts/version.js", |
|
|
|
|
"set-version": "node .scripts/set-version.js", |
|
|
|
|
"release": "meteor yarn set-version --silent", |
|
|
|
|
"storybook": "storybook dev -p 6006 --no-version-updates", |
|
|
|
|
"prepare": "node playwright.prepare.mjs", |
|
|
|
|
"docker:start": "docker-compose up" |
|
|
|
|
}, |
|
|
|
|
"license": "MIT", |
|
|
|
|
"repository": { |
|
|
|
|
"type": "git", |
|
|
|
|
"url": "https://github.com/RocketChat/Rocket.Chat.git" |
|
|
|
|
}, |
|
|
|
|
"bugs": { |
|
|
|
|
"url": "https://github.com/RocketChat/Rocket.Chat/issues", |
|
|
|
|
"email": "support@rocket.chat" |
|
|
|
|
}, |
|
|
|
|
"devDependencies": { |
|
|
|
|
"@axe-core/playwright": "^4.10.2", |
|
|
|
|
"@babel/core": "~7.28.5", |
|
|
|
|
"@babel/eslint-parser": "~7.28.5", |
|
|
|
|
"@babel/preset-env": "~7.28.5", |
|
|
|
|
"@babel/preset-react": "~7.27.1", |
|
|
|
|
"@babel/register": "~7.28.3", |
|
|
|
|
"@faker-js/faker": "~8.0.2", |
|
|
|
|
"@playwright/test": "^1.52.0", |
|
|
|
|
"@rocket.chat/desktop-api": "workspace:~", |
|
|
|
|
"@rocket.chat/eslint-config": "workspace:^", |
|
|
|
|
"@rocket.chat/jest-presets": "workspace:~", |
|
|
|
|
"@rocket.chat/livechat": "workspace:^", |
|
|
|
|
"@rocket.chat/mock-providers": "workspace:^", |
|
|
|
|
"@rocket.chat/tsconfig": "workspace:*", |
|
|
|
|
"@storybook/addon-a11y": "^8.6.14", |
|
|
|
|
"@storybook/addon-essentials": "^8.6.14", |
|
|
|
|
"@storybook/addon-interactions": "^8.6.14", |
|
|
|
|
"@storybook/addon-styling-webpack": "^1.0.1", |
|
|
|
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.6", |
|
|
|
|
"@storybook/react": "^8.6.14", |
|
|
|
|
"@storybook/react-webpack5": "^8.6.14", |
|
|
|
|
"@testing-library/dom": "~10.4.1", |
|
|
|
|
"@testing-library/react": "~16.3.0", |
|
|
|
|
"@testing-library/user-event": "~14.6.1", |
|
|
|
|
"@types/adm-zip": "^0.5.7", |
|
|
|
|
"@types/archiver": "~6.0.4", |
|
|
|
|
"@types/bad-words": "^3.0.3", |
|
|
|
|
"@types/bcrypt": "^5.0.2", |
|
|
|
|
"@types/body-parser": "^1.19.6", |
|
|
|
|
"@types/busboy": "^1.5.4", |
|
|
|
|
"@types/bytebuffer": "~5.0.49", |
|
|
|
|
"@types/chai": "~4.3.20", |
|
|
|
|
"@types/chai-as-promised": "^7.1.8", |
|
|
|
|
"@types/chai-datetime": "0.0.39", |
|
|
|
|
"@types/chai-dom": "1.11.3", |
|
|
|
|
"@types/chai-spies": "~1.0.6", |
|
|
|
|
"@types/codemirror": "~5.60.17", |
|
|
|
|
"@types/cookie": "^0.5.4", |
|
|
|
|
"@types/cookie-parser": "^1.4.10", |
|
|
|
|
"@types/cors": "^2.8.19", |
|
|
|
|
"@types/cssom": "^0.4.3", |
|
|
|
|
"@types/ejson": "^2.2.2", |
|
|
|
|
"@types/express": "^4.17.25", |
|
|
|
|
"@types/express-rate-limit": "^5.1.3", |
|
|
|
|
"@types/google-libphonenumber": "^7.4.30", |
|
|
|
|
"@types/gravatar": "^1.8.6", |
|
|
|
|
"@types/he": "^1.2.3", |
|
|
|
|
"@types/i18next-sprintf-postprocessor": "^0.2.3", |
|
|
|
|
"@types/imap": "^0.8.42", |
|
|
|
|
"@types/jest": "~30.0.0", |
|
|
|
|
"@types/jsdom": "^21.1.7", |
|
|
|
|
"@types/jsdom-global": "^3.0.7", |
|
|
|
|
"@types/jsrsasign": "^10.5.15", |
|
|
|
|
"@types/katex": "^0.16.7", |
|
|
|
|
"@types/later": "^1.2.9", |
|
|
|
|
"@types/ldapjs": "^2.2.5", |
|
|
|
|
"@types/less": "~3.0.8", |
|
|
|
|
"@types/lodash": "~4.17.20", |
|
|
|
|
"@types/lodash.clonedeep": "^4.5.9", |
|
|
|
|
"@types/lodash.debounce": "^4.0.9", |
|
|
|
|
"@types/lodash.escape": "^4.0.9", |
|
|
|
|
"@types/lodash.get": "^4.4.9", |
|
|
|
|
"@types/mailparser": "^3.4.6", |
|
|
|
|
"@types/marked": "^4.3.2", |
|
|
|
|
"@types/meteor-collection-hooks": "^0.8.9", |
|
|
|
|
"@types/mkdirp": "^1.0.2", |
|
|
|
|
"@types/mocha": "github:whitecolor/mocha-types", |
|
|
|
|
"@types/node": "~22.16.5", |
|
|
|
|
"@types/node-rsa": "^1.1.4", |
|
|
|
|
"@types/nodemailer": "~6.4.21", |
|
|
|
|
"@types/oauth2-server": "^3.0.18", |
|
|
|
|
"@types/object-path": "^0.11.4", |
|
|
|
|
"@types/parseurl": "^1.3.3", |
|
|
|
|
"@types/prometheus-gc-stats": "^0.6.4", |
|
|
|
|
"@types/proxy-from-env": "^1.0.4", |
|
|
|
|
"@types/proxyquire": "^1.3.31", |
|
|
|
|
"@types/psl": "^1.1.3", |
|
|
|
|
"@types/qs": "^6.14.0", |
|
|
|
|
"@types/react": "~18.3.26", |
|
|
|
|
"@types/react-dom": "~18.3.7", |
|
|
|
|
"@types/sanitize-html": "~2.16.0", |
|
|
|
|
"@types/semver": "^7.5.8", |
|
|
|
|
"@types/sharp": "^0.32.0", |
|
|
|
|
"@types/sinon": "^10.0.20", |
|
|
|
|
"@types/speakeasy": "^2.0.10", |
|
|
|
|
"@types/strict-uri-encode": "^2.0.2", |
|
|
|
|
"@types/supertest": "~6.0.3", |
|
|
|
|
"@types/supports-color": "~7.2.1", |
|
|
|
|
"@types/swagger-ui-express": "^4.1.8", |
|
|
|
|
"@types/textarea-caret": "^3.0.4", |
|
|
|
|
"@types/ua-parser-js": "^0.7.39", |
|
|
|
|
"@types/underscore": "^1.13.0", |
|
|
|
|
"@types/uuid": "^10.0.0", |
|
|
|
|
"@types/xml-crypto": "~1.4.6", |
|
|
|
|
"@types/xml-encryption": "~1.2.4", |
|
|
|
|
"@typescript-eslint/eslint-plugin": "~5.60.1", |
|
|
|
|
"@typescript-eslint/parser": "~5.60.1", |
|
|
|
|
"autoprefixer": "^9.8.8", |
|
|
|
|
"babel-loader": "~10.0.0", |
|
|
|
|
"babel-plugin-array-includes": "^2.0.3", |
|
|
|
|
"babel-plugin-istanbul": "~7.0.1", |
|
|
|
|
"chai": "^4.5.0", |
|
|
|
|
"chai-as-promised": "^7.1.2", |
|
|
|
|
"chai-datetime": "^1.8.1", |
|
|
|
|
"chai-dom": "^1.12.1", |
|
|
|
|
"chai-spies": "~1.1.0", |
|
|
|
|
"cross-env": "^7.0.3", |
|
|
|
|
"docker-compose": "^0.24.8", |
|
|
|
|
"emojione-assets": "^4.5.0", |
|
|
|
|
"eslint": "~8.45.0", |
|
|
|
|
"eslint-config-prettier": "~9.1.2", |
|
|
|
|
"eslint-plugin-anti-trojan-source": "~1.1.2", |
|
|
|
|
"eslint-plugin-import": "~2.31.0", |
|
|
|
|
"eslint-plugin-no-floating-promise": "~2.0.0", |
|
|
|
|
"eslint-plugin-playwright": "~2.2.2", |
|
|
|
|
"eslint-plugin-prettier": "~5.2.6", |
|
|
|
|
"eslint-plugin-react": "~7.37.5", |
|
|
|
|
"eslint-plugin-react-hooks": "~5.0.0", |
|
|
|
|
"eslint-plugin-storybook": "~0.11.6", |
|
|
|
|
"eslint-plugin-testing-library": "~6.4.0", |
|
|
|
|
"eslint-plugin-you-dont-need-lodash-underscore": "~6.14.0", |
|
|
|
|
"fast-glob": "^3.3.3", |
|
|
|
|
"i18next": "~23.4.9", |
|
|
|
|
"jest": "~30.2.0", |
|
|
|
|
"jsdom-global": "^3.0.2", |
|
|
|
|
"mocha": "^9.2.2", |
|
|
|
|
"nyc": "^17.1.0", |
|
|
|
|
"outdent": "~0.8.0", |
|
|
|
|
"pino-pretty": "^7.6.1", |
|
|
|
|
"playwright-core": "~1.52.0", |
|
|
|
|
"playwright-qase-reporter": "~2.1.6", |
|
|
|
|
"postcss": "~8.4.49", |
|
|
|
|
"postcss-custom-properties": "^14.0.6", |
|
|
|
|
"postcss-easy-import": "^4.0.0", |
|
|
|
|
"postcss-lit": "^1.1.1", |
|
|
|
|
"postcss-load-config": "^6.0.1", |
|
|
|
|
"postcss-media-minmax": "^5.0.0", |
|
|
|
|
"postcss-nested": "^7.0.2", |
|
|
|
|
"postcss-url": "^10.1.3", |
|
|
|
|
"prettier": "~3.3.3", |
|
|
|
|
"proxyquire": "^2.1.3", |
|
|
|
|
"raw-loader": "~4.0.2", |
|
|
|
|
"react-docgen-typescript-plugin": "^1.0.8", |
|
|
|
|
"sinon": "^19.0.5", |
|
|
|
|
"source-map": "~0.7.6", |
|
|
|
|
"storybook": "^8.6.14", |
|
|
|
|
"stylelint": "^16.10.0", |
|
|
|
|
"stylelint-config-standard": "^36.0.1", |
|
|
|
|
"stylelint-order": "^6.0.4", |
|
|
|
|
"stylelint-selector-bem-pattern": "^4.0.1", |
|
|
|
|
"supertest": "~7.1.4", |
|
|
|
|
"supports-color": "~7.2.0", |
|
|
|
|
"template-file": "^6.0.1", |
|
|
|
|
"ts-node": "^10.9.2", |
|
|
|
|
"tsx": "~4.20.6", |
|
|
|
|
"typescript": "~5.9.3", |
|
|
|
|
"webpack": "~5.99.9" |
|
|
|
|
"typecheck": "meteor lint && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" tsc --noEmit --skipLibCheck", |
|
|
|
|
"version": "node .scripts/version.js" |
|
|
|
|
}, |
|
|
|
|
"browserslist": [ |
|
|
|
|
"last 2 versions", |
|
|
|
|
"Firefox ESR" |
|
|
|
|
], |
|
|
|
|
"dependencies": { |
|
|
|
|
"@babel/runtime": "~7.28.4", |
|
|
|
|
"@bugsnag/js": "~7.20.2", |
|
|
|
|
@ -464,22 +309,177 @@ |
|
|
|
|
"zod": "^3.24.1", |
|
|
|
|
"zustand": "~5.0.8" |
|
|
|
|
}, |
|
|
|
|
"meteor": { |
|
|
|
|
"mainModule": { |
|
|
|
|
"client": "client/main.ts", |
|
|
|
|
"server": "server/main.ts" |
|
|
|
|
} |
|
|
|
|
"devDependencies": { |
|
|
|
|
"@axe-core/playwright": "^4.10.2", |
|
|
|
|
"@babel/core": "~7.28.5", |
|
|
|
|
"@babel/eslint-parser": "~7.28.5", |
|
|
|
|
"@babel/preset-env": "~7.28.5", |
|
|
|
|
"@babel/preset-react": "~7.27.1", |
|
|
|
|
"@babel/register": "~7.28.3", |
|
|
|
|
"@faker-js/faker": "~8.0.2", |
|
|
|
|
"@playwright/test": "^1.52.0", |
|
|
|
|
"@rocket.chat/desktop-api": "workspace:~", |
|
|
|
|
"@rocket.chat/eslint-config": "workspace:^", |
|
|
|
|
"@rocket.chat/jest-presets": "workspace:~", |
|
|
|
|
"@rocket.chat/livechat": "workspace:^", |
|
|
|
|
"@rocket.chat/mock-providers": "workspace:^", |
|
|
|
|
"@rocket.chat/tsconfig": "workspace:*", |
|
|
|
|
"@storybook/addon-a11y": "^8.6.14", |
|
|
|
|
"@storybook/addon-essentials": "^8.6.14", |
|
|
|
|
"@storybook/addon-interactions": "^8.6.14", |
|
|
|
|
"@storybook/addon-styling-webpack": "^1.0.1", |
|
|
|
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.6", |
|
|
|
|
"@storybook/react": "^8.6.14", |
|
|
|
|
"@storybook/react-webpack5": "^8.6.14", |
|
|
|
|
"@testing-library/dom": "~10.4.1", |
|
|
|
|
"@testing-library/react": "~16.3.0", |
|
|
|
|
"@testing-library/user-event": "~14.6.1", |
|
|
|
|
"@types/adm-zip": "^0.5.7", |
|
|
|
|
"@types/archiver": "~6.0.4", |
|
|
|
|
"@types/bad-words": "^3.0.3", |
|
|
|
|
"@types/bcrypt": "^5.0.2", |
|
|
|
|
"@types/body-parser": "^1.19.6", |
|
|
|
|
"@types/busboy": "^1.5.4", |
|
|
|
|
"@types/bytebuffer": "~5.0.49", |
|
|
|
|
"@types/chai": "~4.3.20", |
|
|
|
|
"@types/chai-as-promised": "^7.1.8", |
|
|
|
|
"@types/chai-datetime": "0.0.39", |
|
|
|
|
"@types/chai-dom": "1.11.3", |
|
|
|
|
"@types/chai-spies": "~1.0.6", |
|
|
|
|
"@types/codemirror": "~5.60.17", |
|
|
|
|
"@types/cookie": "^0.5.4", |
|
|
|
|
"@types/cookie-parser": "^1.4.10", |
|
|
|
|
"@types/cors": "^2.8.19", |
|
|
|
|
"@types/cssom": "^0.4.3", |
|
|
|
|
"@types/ejson": "^2.2.2", |
|
|
|
|
"@types/express": "^4.17.25", |
|
|
|
|
"@types/express-rate-limit": "^5.1.3", |
|
|
|
|
"@types/google-libphonenumber": "^7.4.30", |
|
|
|
|
"@types/gravatar": "^1.8.6", |
|
|
|
|
"@types/he": "^1.2.3", |
|
|
|
|
"@types/i18next-sprintf-postprocessor": "^0.2.3", |
|
|
|
|
"@types/imap": "^0.8.42", |
|
|
|
|
"@types/jest": "~30.0.0", |
|
|
|
|
"@types/jsdom": "^21.1.7", |
|
|
|
|
"@types/jsdom-global": "^3.0.7", |
|
|
|
|
"@types/jsrsasign": "^10.5.15", |
|
|
|
|
"@types/katex": "^0.16.7", |
|
|
|
|
"@types/later": "^1.2.9", |
|
|
|
|
"@types/ldapjs": "^2.2.5", |
|
|
|
|
"@types/less": "~3.0.8", |
|
|
|
|
"@types/lodash": "~4.17.20", |
|
|
|
|
"@types/lodash.clonedeep": "^4.5.9", |
|
|
|
|
"@types/lodash.debounce": "^4.0.9", |
|
|
|
|
"@types/lodash.escape": "^4.0.9", |
|
|
|
|
"@types/lodash.get": "^4.4.9", |
|
|
|
|
"@types/mailparser": "^3.4.6", |
|
|
|
|
"@types/marked": "^4.3.2", |
|
|
|
|
"@types/meteor-collection-hooks": "^0.8.9", |
|
|
|
|
"@types/mkdirp": "^1.0.2", |
|
|
|
|
"@types/mocha": "github:whitecolor/mocha-types", |
|
|
|
|
"@types/node": "~22.16.5", |
|
|
|
|
"@types/node-rsa": "^1.1.4", |
|
|
|
|
"@types/nodemailer": "~6.4.21", |
|
|
|
|
"@types/oauth2-server": "^3.0.18", |
|
|
|
|
"@types/object-path": "^0.11.4", |
|
|
|
|
"@types/parseurl": "^1.3.3", |
|
|
|
|
"@types/prometheus-gc-stats": "^0.6.4", |
|
|
|
|
"@types/proxy-from-env": "^1.0.4", |
|
|
|
|
"@types/proxyquire": "^1.3.31", |
|
|
|
|
"@types/psl": "^1.1.3", |
|
|
|
|
"@types/qs": "^6.14.0", |
|
|
|
|
"@types/react": "~18.3.26", |
|
|
|
|
"@types/react-dom": "~18.3.7", |
|
|
|
|
"@types/sanitize-html": "~2.16.0", |
|
|
|
|
"@types/semver": "^7.5.8", |
|
|
|
|
"@types/sharp": "^0.32.0", |
|
|
|
|
"@types/sinon": "^10.0.20", |
|
|
|
|
"@types/speakeasy": "^2.0.10", |
|
|
|
|
"@types/strict-uri-encode": "^2.0.2", |
|
|
|
|
"@types/supertest": "~6.0.3", |
|
|
|
|
"@types/supports-color": "~7.2.1", |
|
|
|
|
"@types/swagger-ui-express": "^4.1.8", |
|
|
|
|
"@types/textarea-caret": "^3.0.4", |
|
|
|
|
"@types/ua-parser-js": "^0.7.39", |
|
|
|
|
"@types/underscore": "^1.13.0", |
|
|
|
|
"@types/uuid": "^10.0.0", |
|
|
|
|
"@types/xml-crypto": "~1.4.6", |
|
|
|
|
"@types/xml-encryption": "~1.2.4", |
|
|
|
|
"@typescript-eslint/eslint-plugin": "~5.60.1", |
|
|
|
|
"@typescript-eslint/parser": "~5.60.1", |
|
|
|
|
"autoprefixer": "^9.8.8", |
|
|
|
|
"babel-loader": "~10.0.0", |
|
|
|
|
"babel-plugin-array-includes": "^2.0.3", |
|
|
|
|
"babel-plugin-istanbul": "~7.0.1", |
|
|
|
|
"chai": "^4.5.0", |
|
|
|
|
"chai-as-promised": "^7.1.2", |
|
|
|
|
"chai-datetime": "^1.8.1", |
|
|
|
|
"chai-dom": "^1.12.1", |
|
|
|
|
"chai-spies": "~1.1.0", |
|
|
|
|
"cross-env": "^7.0.3", |
|
|
|
|
"docker-compose": "^0.24.8", |
|
|
|
|
"emojione-assets": "^4.5.0", |
|
|
|
|
"eslint": "~8.45.0", |
|
|
|
|
"eslint-config-prettier": "~9.1.2", |
|
|
|
|
"eslint-plugin-anti-trojan-source": "~1.1.2", |
|
|
|
|
"eslint-plugin-import": "~2.31.0", |
|
|
|
|
"eslint-plugin-no-floating-promise": "~2.0.0", |
|
|
|
|
"eslint-plugin-playwright": "~2.2.2", |
|
|
|
|
"eslint-plugin-prettier": "~5.2.6", |
|
|
|
|
"eslint-plugin-react": "~7.37.5", |
|
|
|
|
"eslint-plugin-react-hooks": "~5.0.0", |
|
|
|
|
"eslint-plugin-storybook": "~0.11.6", |
|
|
|
|
"eslint-plugin-testing-library": "~6.4.0", |
|
|
|
|
"eslint-plugin-you-dont-need-lodash-underscore": "~6.14.0", |
|
|
|
|
"fast-glob": "^3.3.3", |
|
|
|
|
"i18next": "~23.4.9", |
|
|
|
|
"jest": "~30.2.0", |
|
|
|
|
"jsdom-global": "^3.0.2", |
|
|
|
|
"mocha": "^9.2.2", |
|
|
|
|
"nyc": "^17.1.0", |
|
|
|
|
"outdent": "~0.8.0", |
|
|
|
|
"pino-pretty": "^7.6.1", |
|
|
|
|
"playwright-core": "~1.52.0", |
|
|
|
|
"playwright-qase-reporter": "~2.1.6", |
|
|
|
|
"postcss": "~8.4.49", |
|
|
|
|
"postcss-custom-properties": "^14.0.6", |
|
|
|
|
"postcss-easy-import": "^4.0.0", |
|
|
|
|
"postcss-lit": "^1.1.1", |
|
|
|
|
"postcss-load-config": "^6.0.1", |
|
|
|
|
"postcss-media-minmax": "^5.0.0", |
|
|
|
|
"postcss-nested": "^7.0.2", |
|
|
|
|
"postcss-url": "^10.1.3", |
|
|
|
|
"prettier": "~3.3.3", |
|
|
|
|
"proxyquire": "^2.1.3", |
|
|
|
|
"raw-loader": "~4.0.2", |
|
|
|
|
"react-docgen-typescript-plugin": "^1.0.8", |
|
|
|
|
"sinon": "^19.0.5", |
|
|
|
|
"source-map": "~0.7.6", |
|
|
|
|
"storybook": "^8.6.14", |
|
|
|
|
"stylelint": "^16.10.0", |
|
|
|
|
"stylelint-config-standard": "^36.0.1", |
|
|
|
|
"stylelint-order": "^6.0.4", |
|
|
|
|
"stylelint-selector-bem-pattern": "^4.0.1", |
|
|
|
|
"supertest": "~7.1.4", |
|
|
|
|
"supports-color": "~7.2.0", |
|
|
|
|
"template-file": "^6.0.1", |
|
|
|
|
"ts-node": "^10.9.2", |
|
|
|
|
"tsx": "~4.20.6", |
|
|
|
|
"typescript": "~5.9.3", |
|
|
|
|
"webpack": "~5.99.9" |
|
|
|
|
}, |
|
|
|
|
"browserslist": [ |
|
|
|
|
"last 2 versions", |
|
|
|
|
"Firefox ESR" |
|
|
|
|
], |
|
|
|
|
"volta": { |
|
|
|
|
"extends": "../../package.json" |
|
|
|
|
}, |
|
|
|
|
"installConfig": { |
|
|
|
|
"hoistingLimits": "workspaces" |
|
|
|
|
}, |
|
|
|
|
"meteor": { |
|
|
|
|
"mainModule": { |
|
|
|
|
"client": "client/main.ts", |
|
|
|
|
"server": "server/main.ts" |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
"rocketchat": { |
|
|
|
|
"minimumClientVersions": { |
|
|
|
|
"desktop": "3.9.6", |
|
|
|
|
|