package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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.4.1",
  18. "instant.page": "^5.1.0"
  19. },
  20. "devDependencies": {
  21. "eslint": "^7.17.0",
  22. "eslint-config-prettier": "^7.1.0",
  23. "prettier": "2.2.1",
  24. "stylelint": "^13.8.0",
  25. "stylelint-config-prettier": "^8.0.2",
  26. "stylelint-config-standard": "^20.0.0",
  27. "stylelint-scss": "^3.18.0"
  28. },
  29. "scripts": {
  30. "test": "echo \"Error: no test specified\" && exit 1",
  31. "lint:js": "eslint assets/js/",
  32. "lint:style": "stylelint \"assets/{css,scss}/**/*.{css,scss}\"",
  33. "format": "prettier --write \"*.{css,js,json,md,scss}\" \"./**/*.{css,js,json,md,scss}\"",
  34. "stylelint-conflict-check": "stylelint-config-prettier-check"
  35. }
  36. }