package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. "prettier-plugin-go-template": "0.0.11-beta.4",
  25. "stylelint": "^13.8.0",
  26. "stylelint-config-prettier": "^8.0.2",
  27. "stylelint-config-standard": "^20.0.0",
  28. "stylelint-scss": "^3.18.0"
  29. },
  30. "scripts": {
  31. "test": "echo \"Error: no test specified\" && exit 1",
  32. "lint": "yarn run lint:js && yarn run lint:style",
  33. "lint:js": "eslint '*/**/*.{js,ts,tsx}'",
  34. "lint:js:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
  35. "lint:style": "stylelint '*/**/*.{css,scss}'",
  36. "format": "prettier --write \"*.{css,js,json,md,scss}\" \"./**/*.{css,js,json,md,scss}\"",
  37. "stylelint-conflict-check": "stylelint-config-prettier-check"
  38. }
  39. }