Files
meteor/package.json
2026-04-16 17:21:12 -03:00

103 lines
3.0 KiB
JSON

{
"name": "meteor",
"version": "0.0.1",
"description": "Meteor's main repository, containing the Meteor tool, core packages, and documentation.",
"repository": {
"type": "git",
"url": "git+https://github.com/meteor/meteor.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/meteor/meteor/issues"
},
"homepage": "https://www.meteor.com/",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/eslint-plugin": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@types/lodash.isempty": "^4.4.9",
"@types/node": "^24.10.13",
"@types/sockjs": "^0.3.36",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-config-vazco": "^7.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"lefthook": "^2.1.4",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"type-coverage": "^2.29.7",
"typescript-coverage-report": "^1.1.1"
},
"scripts": {
"fmt": "oxfmt --ignore-path .fmtignore .",
"fmt:check": "oxfmt --ignore-path .fmtignore --check .",
"lint": "oxlint --ignore-path .oxlintignore .",
"lint:fix": "oxlint --fix --ignore-path .oxlintignore .",
"install:unit": "cd tools/unit-tests && npm install",
"test:unit": "cd tools/unit-tests && npm test",
"test:idle-bot": "node --test .github/scripts/__tests__/inactive-issues.test.js",
"install:e2e": "cd tools/modern-tests && npm install && npx playwright install --with-deps chromium chromium-headless-shell",
"test:e2e": "cd tools/modern-tests && npm test -- ",
"checkout:pr": "node scripts/checkout-pr.js",
"ts-coverage": "typescript-coverage-report",
"ts-coverage:ci": "type-coverage --at-least 80"
},
"jshintConfig": {
"esversion": 11
},
"prettier": {
"semi": true,
"singleQuote": false
},
"eslintConfig": {
"extends": "vazco",
"rules": {
"global-require": "off",
"no-console": "off",
"camelcase": "warn",
"consistent-return": "off",
"quotes": [
"warn",
"single",
{
"allowTemplateLiterals": true
}
],
"no-shadow": [
"error",
{
"allow": [
"resolve"
]
}
],
"no-use-before-define": "warn",
"import/no-unresolved": "warn",
"require-await": "warn",
"space-before-function-paren": [
"warn",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
],
"complexity": "off",
"func-names": "off",
"no-undef": "warn",
"curly": "off",
"sort-imports": "off"
}
}
}