package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-themes/issues"
  9. },
  10. "homepage": "https://wowchemy.com",
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/wowchemy/wowchemy-hugo-themes.git"
  14. },
  15. "main": "index.js",
  16. "dependencies": {
  17. "@fortawesome/fontawesome-free": "^5.15.3",
  18. "bootstrap": "^4.6.0",
  19. "headroom.js": "^0.12.0",
  20. "instant.page": "^5.1.0",
  21. "jquery": "^3.6.0",
  22. "medium-zoom": "^1.0.6"
  23. },
  24. "devDependencies": {
  25. "eslint": "7.20.0",
  26. "eslint-config-prettier": "^7.1.0",
  27. "prettier": "2.2.1",
  28. "prettier-plugin-go-template": "0.0.11-beta.4",
  29. "stylelint": "13.10.0",
  30. "stylelint-config-prettier": "^8.0.2",
  31. "stylelint-config-standard": "^20.0.0",
  32. "stylelint-scss": "3.19.0"
  33. },
  34. "scripts": {
  35. "view": "scripts/view-starter.sh",
  36. "view:local": "scripts/view-starter-dev.sh",
  37. "test": "echo \"Error: no test specified\" && exit 1",
  38. "lint": "yarn run lint:js && yarn run lint:style",
  39. "lint:js": "eslint '*/**/*.{js,ts,tsx}'",
  40. "lint:js:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
  41. "lint:style": "stylelint '*/**/*.{css,scss}'",
  42. "format": "prettier --write \"*.{css,js,json,md,scss}\" \"./**/*.{css,js,json,md,scss}\"",
  43. "stylelint-conflict-check": "stylelint-config-prettier-check"
  44. }
  45. }