Skip to content
Snippets Groups Projects
package.json 3.67 KiB
Newer Older
  • Learn to ignore specific revisions
  •   "version": "2.0.0-next.1",
    
      "description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
    
      "private": true,
      "license": "AGPL-3.0-or-later",
    
        "dev": "vite",
        "build": "tsc && vite build",
        "serve": "vite preview",
    
        "build:static": "pnpm run build:icons && pnpm run build:svg",
    
        "build:icons": "svgo -f app/Resources/icons -o app/Resources/icons -r --config=./.svgo.icons.cjs",
    
        "build:svg": "svgo -f app/Resources/images -o public/assets/images -r --config=./.svgo.cjs",
    
        "lint": "eslint --ext js,ts app/Resources",
        "lint:fix": "eslint --ext js,ts app/Resources --fix",
    
        "lint:css": "stylelint -f verbose \"app/Resources/**/*.css\"",
        "lint:css:fix": "stylelint -f verbose --fix \"app/Resources/**/*.css\"",
    
        "prettier": "prettier --check .",
        "prettier:fix": "prettier --write .",
    
        "prepare": "is-ci || husky"
    
        "*.{js,ts,css,md,json}": "prettier --write",
    
        "*.{ts,js}": "eslint --ext js,ts,tsx app/Resources --fix",
    
          "path": "cz-conventional-changelog"