package.json 733 B

1234567891011121314151617181920212223
  1. {
  2. "name": "apisnecros",
  3. "version": "1.0.0",
  4. "description": "A Hugo framework theme",
  5. "dependencies": {
  6. "autoprefixer": "^10.4.7",
  7. "cssnano": "^5.1.7",
  8. "postcss": "^8.4.13",
  9. "postcss-cli": "^9.1.0",
  10. "postcss-import": "^14.1.0",
  11. "tailwindcss": "^2.2.19"
  12. },
  13. "scripts": {
  14. "test": "echo \"Error: no test specified\" && exit 1",
  15. "postcss": "postcss static/css/master.css -o ../../public/css/tailwind.min.css",
  16. "postcss:dev": "postcss static/css/master.css -o static/css/tailwind.min.css",
  17. "minify": "cssnano css/tailwind.css css/tailwind.min.css --safe",
  18. "help": "postcss --help",
  19. "build": "npm run postcss && npm run minify"
  20. },
  21. "author": "Apis Necros",
  22. "license": "ISC"
  23. }