mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-24 04:16:00 +00:00
In the latest versions of ESLint, more and more formatting rules were removed or declared deprecated. These rules have been integrated into the new Stylistic package (https://eslint.style/guide/why) and expanded. Stylistic acts as a better formatter for JavaScript as Prettier. With this PR there are many changes that make the code more uniform, but it may be difficult to review due to the large amount. Even if I have no worries about the changes, perhaps this would be something for the release after next. Let me know what you think.
104 lines
3.8 KiB
JSON
104 lines
3.8 KiB
JSON
{
|
|
"name": "magicmirror",
|
|
"version": "2.26.0-develop",
|
|
"description": "The open source modular smart mirror platform.",
|
|
"main": "js/electron.js",
|
|
"scripts": {
|
|
"start": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js",
|
|
"start:dev": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js dev",
|
|
"server": "node ./serveronly",
|
|
"install-mm": "npm install --no-audit --no-fund --no-update-notifier --only=prod --omit=dev",
|
|
"install-mm:dev": "npm install --no-audit --no-fund --no-update-notifier",
|
|
"install-vendor": "echo \"Installing vendor files ...\n\" && cd vendor && npm install --loglevel=error --no-audit --no-fund --no-update-notifier",
|
|
"install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error --no-audit --no-fund --no-update-notifier",
|
|
"postinstall": "npm run install-vendor && npm run install-fonts && echo \"MagicMirror² installation finished successfully! \n\"",
|
|
"test": "NODE_ENV=test jest -i --forceExit",
|
|
"test:coverage": "NODE_ENV=test jest --coverage -i --verbose false --forceExit",
|
|
"test:electron": "NODE_ENV=test jest --selectProjects electron -i --forceExit",
|
|
"test:e2e": "NODE_ENV=test jest --selectProjects e2e -i --forceExit",
|
|
"test:unit": "NODE_ENV=test jest --selectProjects unit",
|
|
"test:prettier": "prettier . --check",
|
|
"test:js": "eslint 'js/**/*.js' 'modules/default/**/*.js' 'clientonly/*.js' 'serveronly/*.js' 'translations/*.js' 'vendor/*.js' 'tests/**/*.js' 'config/*'",
|
|
"test:css": "stylelint 'css/main.css' 'fonts/*.css' 'modules/default/**/*.css' 'vendor/*.css' --config .stylelintrc.json",
|
|
"test:calendar": "node ./modules/default/calendar/debug.js",
|
|
"config:check": "node js/check_config.js",
|
|
"lint:prettier": "prettier . --write",
|
|
"lint:js": "eslint 'js/**/*.js' 'modules/default/**/*.js' 'clientonly/*.js' 'serveronly/*.js' 'translations/*.js' 'vendor/*.js' 'tests/**/*.js' 'config/*' --fix",
|
|
"lint:css": "stylelint 'css/main.css' 'fonts/*.css' 'modules/default/**/*.css' 'vendor/*.css' --config .stylelintrc.json --fix",
|
|
"lint:staged": "lint-staged",
|
|
"prepare": "[ -f node_modules/.bin/husky ] && husky install || echo no husky installed."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MichMich/MagicMirror.git"
|
|
},
|
|
"keywords": [
|
|
"magic mirror",
|
|
"magicmirror",
|
|
"smart mirror",
|
|
"mirror UI",
|
|
"modular"
|
|
],
|
|
"author": "Michael Teeuw",
|
|
"contributors": [
|
|
"https://github.com/MichMich/MagicMirror/graphs/contributors"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/MichMich/MagicMirror/issues"
|
|
},
|
|
"homepage": "https://magicmirror.builders",
|
|
"devDependencies": {
|
|
"@stylistic/eslint-plugin": "^1.5.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^27.6.0",
|
|
"eslint-plugin-jsdoc": "^46.9.1",
|
|
"express-basic-auth": "^1.2.1",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.7.0",
|
|
"jsdom": "^23.0.1",
|
|
"lint-staged": "^15.2.0",
|
|
"lodash": "^4.17.21",
|
|
"playwright": "^1.40.1",
|
|
"prettier": "^3.1.1",
|
|
"sinon": "^17.0.1",
|
|
"stylelint": "^16.0.2",
|
|
"stylelint-config-standard": "^35.0.0",
|
|
"stylelint-prettier": "^5.0.0",
|
|
"suncalc": "^1.9.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"electron": "^27.1.3"
|
|
},
|
|
"dependencies": {
|
|
"colors": "^1.4.0",
|
|
"command-exists": "^1.2.9",
|
|
"console-stamp": "^3.1.2",
|
|
"envsub": "^4.1.0",
|
|
"eslint": "^8.56.0",
|
|
"express": "^4.18.2",
|
|
"express-ipfilter": "^1.3.1",
|
|
"feedme": "^2.0.2",
|
|
"helmet": "^7.1.0",
|
|
"html-to-text": "^9.0.5",
|
|
"iconv-lite": "^0.6.3",
|
|
"luxon": "^1.28.1",
|
|
"module-alias": "^2.2.3",
|
|
"moment": "^2.29.4",
|
|
"node-ical": "0.16.1",
|
|
"socket.io": "^4.7.2"
|
|
},
|
|
"lint-staged": {
|
|
"*": "prettier --write",
|
|
"*.js": "eslint",
|
|
"*.css": "stylelint"
|
|
},
|
|
"_moduleAliases": {
|
|
"node_helper": "js/node_helper.js",
|
|
"logger": "js/logger.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|