Skip to content
Snippets Groups Projects
package.json 2.34 KiB
Newer Older
{
  "name": "castopod",
  "version": "0.0.0-development",
  "description": "Castopod 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",
    "url": "https://code.podlibre.org/podlibre/castopod.git"
  },
  "scripts": {
    "watch:js": "parcel watch app/Views/_assets/*.js --out-dir public/assets",
    "build:js": "parcel build app/Views/_assets/*.js --out-dir public/assets",
    "watch:css": "postcss app/Views/_assets/styles/index.css -o public/assets/index.css -w",
    "build:css": "postcss app/Views/_assets/styles/index.css -o public/assets/index.css",
    "build:icons": "svgo -f app/Views/_assets/icons -o public/assets/icons --config=./.svgo.icons.yml",
    "build:svg": "svgo -f app/Views/_assets/images -o public/assets/images --config=./.svgo.yml",
    "build": "npm run build:js && cross-env NODE_ENV=production npm run build:css && npm run build:icons && npm run build:svg",
  "browserslist": [
    ">0.2%",
    "not dead",
    "not op_mini all"
  ],
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
  "lint-staged": {
    "*.{js,css,md,php}": "prettier --write"
  },
      "path": "./node_modules/cz-conventional-changelog"