package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "wowchemy",
  3. "version": "1.0.0",
  4. "description": "The Page Builder for Hugo",
  5. "author": "George Cushen",
  6. "license": "MIT",
  7. "bugs": {
  8. "url": "https://github.com/wowchemy/wowchemy-hugo-modules/issues"
  9. },
  10. "homepage": "https://wowchemy.com",
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/wowchemy/wowchemy-hugo-modules.git"
  14. },
  15. "main": "index.js",
  16. "dependencies": {
  17. "bootstrap": "^4.6.0",
  18. "instant.page": "^5.1.0",
  19. "medium-zoom": "^1.0.6"
  20. },
  21. "devDependencies": {
  22. "eslint": "7.20.0",
  23. "eslint-config-prettier": "^7.1.0",
  24. "prettier": "2.2.1",
  25. "prettier-plugin-go-template": "0.0.11-beta.4",
  26. "stylelint": "13.10.0",
  27. "stylelint-config-prettier": "^8.0.2",
  28. "stylelint-config-standard": "^20.0.0",
  29. "stylelint-scss": "3.19.0"
  30. },
  31. "scripts": {
  32. "test": "echo \"Error: no test specified\" && exit 1",
  33. "lint": "yarn run lint:js && yarn run lint:style",
  34. "lint:js": "eslint '*/**/*.{js,ts,tsx}'",
  35. "lint:js:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
  36. "lint:style": "stylelint '*/**/*.{css,scss}'",
  37. "format": "prettier --write \"*.{css,js,json,md,scss}\" \"./**/*.{css,js,json,md,scss}\"",
  38. "stylelint-conflict-check": "stylelint-config-prettier-check"
  39. }
  40. }