Skip to content
Snippets Groups Projects
package.json 3.64 KiB
Newer Older
  • Learn to ignore specific revisions
  •   "name": "castopod-host",
    
      "version": "1.0.0-beta.11",
    
      "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",
      "repository": {
        "type": "git",
    
        "dev": "vite",
        "build": "tsc && vite build",
        "serve": "vite preview",
    
        "build:static": "npm run build:icons && npm run build:svg",
    
        "build:icons": "svgo -f app/Resources/icons -o public/assets/icons -r --config=./.svgo.icons.js",
        "build:svg": "svgo -f app/Resources/images -o public/assets/images -r --config=./.svgo.js",
        "lint": "eslint --ext js,ts app/Resources",
        "lint:fix": "eslint --ext js,ts app/Resources --fix",
        "lint:css": "stylelint \"app/Resources/**/*.css\"",
        "lint:css:fix": "stylelint --fix \"app/Resources/**/*.css\"",
    
        "prettier": "prettier --check --ignore-path .gitignore .",
    
        "prettier:fix": "prettier --write --ignore-path .gitignore .",
    
        "release": "semantic-release",
        "prepare": "is-ci || husky install"
    
        "*.{js,ts,css,md,json}": "prettier --write",
    
        "*.{ts,js}": "eslint --ext js,ts,tsx app/Resources --fix",
    
          "path": "cz-conventional-changelog"