Issue #3379451: Add yarn script commands for Drupal coding standard and Drupal...
Issue #3379451: Add yarn script commands for Drupal coding standard and Drupal Practice for Web Blog
Showing
- .eslintignore 3 additions, 0 deletions.eslintignore
- .eslintrc.json 51 additions, 0 deletions.eslintrc.json
- .gitignore 3 additions, 0 deletions.gitignore
- .phpcs.xml 398 additions, 0 deletions.phpcs.xml
- .prettierignore 2 additions, 0 deletions.prettierignore
- .prettierrc.json 6 additions, 0 deletions.prettierrc.json
- .stylelintrc.json 392 additions, 0 deletions.stylelintrc.json
- package.json 71 additions, 0 deletionspackage.json
- yarn.lock 4725 additions, 0 deletionsyarn.lock
.eslintignore
0 → 100644
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
.phpcs.xml
0 → 100644
.prettierignore
0 → 100644
.prettierrc.json
0 → 100644
.stylelintrc.json
0 → 100644
package.json
0 → 100644
{ | ||
"name": "webblog", | ||
"private": true, | ||
"description": "Create Web Blog content type, and make views to display content.", | ||
"license": "GPL-2.0", | ||
"engines": { | ||
"yarn": ">= 1.6", | ||
"node": ">= 18.0" | ||
}, | ||
"keywords": [ | ||
"Drupal", | ||
"Web Blog", | ||
"Blog", | ||
"Webship" | ||
], | ||
"author": "Webship.co", | ||
"scripts": { | ||
"phpcs": "phpcs --standard=./.phpcs.xml .", | ||
"phpcbf": "phpcbf --standard=./.phpcs.xml .", | ||
"lint:js": "node ./node_modules/eslint/bin/eslint.js .", | ||
"lint:css": "stylelint \"**/*.css\"", | ||
"lint:yaml": "node ./node_modules/eslint/bin/eslint.js --ext .yml ." | ||
}, | ||
"dependencies": { }, | ||
"devDependencies": { | ||
"eslint": "^8.9.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^8.4.0", | ||
"eslint-plugin-import": "^2.25.4", | ||
"eslint-plugin-jquery": "^1.5.1", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-yml": "^1.2.0", | ||
"glob": "^8.0.3", | ||
"jsdom": "^20.0.0", | ||
"loadjs": "4.2.x", | ||
"minimist": "^1.2.2", | ||
"mkdirp": "^1.0.4", | ||
"nightwatch": "^2.3.9", | ||
"normalize.css": "8.0.x", | ||
"postcss": "^8.4.16", | ||
"postcss-header": "^3.0.2", | ||
"postcss-import": "^15.0.0", | ||
"postcss-preset-env": "^8.3.2", | ||
"postcss-pxtorem": "^6.0.0", | ||
"postcss-url": "^10.1.3", | ||
"prettier": "^2.1.2", | ||
"shepherd.js": "~10.0.1", | ||
"sortablejs": "1.15.x", | ||
"stylelint": "^15.5.0", | ||
"stylelint-checkstyle-formatter": "^0.1.2", | ||
"stylelint-config-standard": "^33.0.0", | ||
"stylelint-order": "^6.0.3", | ||
"tabbable": "~6.0.0", | ||
"terser": "^5.14.2", | ||
"terser-webpack-plugin": "^5.3.3", | ||
"underscore": "~1.13.4", | ||
"webpack": "^5.77.0", | ||
"webpack-cli": "^5.0.0" | ||
}, | ||
"browserslist": [ | ||
"last 2 Chrome major versions", | ||
"last 2 Firefox major versions", | ||
"last 2 Safari major versions", | ||
"last 2 Edge major versions", | ||
"last 2 Opera versions", | ||
"last 2 iOS major versions", | ||
"last 1 ChromeAndroid version", | ||
"last 1 Samsung version", | ||
"Firefox ESR" | ||
] | ||
} | ||
\ No newline at end of file |
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment