X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fpackage.json;h=731a73d941d378bc0dc3e4ff98da18aab7802756;hb=f3baf763d342a5f82576890e2a8111a5aaf139dc;hp=b168cb374d1026e7caec88b90e659f3c917163ca;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/package.json b/web/core/package.json index b168cb374..731a73d94 100644 --- a/web/core/package.json +++ b/web/core/package.json @@ -3,21 +3,85 @@ "description": "Drupal is an open source content management platform powering millions of websites and applications.", "license": "GPL-2.0", "private": true, + "engines": { + "yarn": ">= 1.6", + "node": ">= 8.11" + }, "scripts": { - "build:js": "node ./scripts/js/babel-es6-build.js", - "watch:js": "node ./scripts/js/babel-es6-watch.js", - "lint:js": "eslint . || exit 0" + "build:js": "cross-env BABEL_ENV=legacy node ./scripts/js/babel-es6-build.js", + "build:js-dev": "cross-env NODE_ENV=development BABEL_ENV=legacy node ./scripts/js/babel-es6-build.js", + "watch:js": "cross-env BABEL_ENV=legacy node ./scripts/js/babel-es6-watch.js", + "watch:js-dev": "cross-env NODE_ENV=development BABEL_ENV=legacy node ./scripts/js/babel-es6-watch.js", + "lint:core-js": "node ./node_modules/eslint/bin/eslint.js .", + "lint:core-js-passing": "node ./node_modules/eslint/bin/eslint.js --quiet --config=.eslintrc.passing.json .", + "lint:core-js-stats": "node ./node_modules/eslint/bin/eslint.js --format=./scripts/js/eslint-stats-by-type.js .", + "lint:css": "stylelint \"**/*.css\"", + "lint:css-checkstyle": "stylelint \"**/*.css\" --custom-formatter ./node_modules/stylelint-checkstyle-formatter/index.js", + "test:nightwatch": "cross-env BABEL_ENV=development node -r dotenv-safe/config -r babel-register ./node_modules/.bin/nightwatch --config ./tests/Drupal/Nightwatch/nightwatch.conf.js", + "prettier": "prettier --write \"./**/*.es6.js\" \"./tests/Drupal/Nightwatch/**/*.js\"" }, "devDependencies": { - "babel-core": "6.17.0", - "babel-preset-es2015": "6.16.0", - "chokidar": "1.6.0", - "eslint": "3.8.1", - "glob": "^7.1.1" + "babel-core": "^6.26.0", + "babel-plugin-add-header-comment": "^1.0.3", + "babel-preset-env": "^1.4.0", + "chalk": "^2.3.0", + "chokidar": "^2.0.0", + "chromedriver": "^2.35.0", + "cross-env": "^5.1.3", + "dotenv-safe": "^5.0.1", + "eslint": "^4.19.1", + "eslint-config-airbnb": "^17.0.0", + "eslint-config-prettier": "^2.9.0", + "eslint-plugin-import": "^2.13.0", + "eslint-plugin-jsx-a11y": "^6.0.3", + "eslint-plugin-prettier": "^2.6.2", + "eslint-plugin-react": "^7.10.0", + "glob": "^7.1.2", + "minimist": "^1.2.0", + "mkdirp": "^0.5.1", + "nightwatch": "^0.9.20", + "prettier": "^1.14.0", + "stylelint": "^9.1.1", + "stylelint-checkstyle-formatter": "^0.1.1", + "stylelint-config-standard": "^18.2.0", + "stylelint-no-browser-hacks": "^1.1.0" }, + "//": "'development is the default environment, and legacy is for transpiling the old jQuery codebase", "babel": { - "presets": [ - "es2015" - ] + "env": { + "development": { + "presets": [ + [ + "env", + { + "modules": "commonjs", + "targets": { + "node": "current" + } + } + ] + ] + }, + "legacy": { + "presets": [ + [ + "env", + { + "modules": false, + "targets": { + "browsers": [ + "ie >= 9", + "edge >= 13", + "firefox >= 5", + "opera >= 12", + "safari >= 5", + "chrome >= 56" + ] + } + } + ] + ] + } + } } }