Skip to content
Snippets Groups Projects
This project manages its dependencies using npm. Learn more
package.json 3.64 KiB
{
  "name": "castopod-host",
  "version": "1.0.0-beta.8",
  "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",
    "url": "https://code.castopod.org/adaures/castopod.git"
  },
  "scripts": {
    "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 .",
    "typecheck": "tsc",
    "commit": "cz",
    "release": "semantic-release",
    "prepare": "is-ci || husky install"
  },
  "dependencies": {
    "@amcharts/amcharts4": "^4.10.24",
    "@amcharts/amcharts4-geodata": "^4.1.22",
    "@codemirror/basic-setup": "^0.19.1",
    "@codemirror/commands": "^0.19.8",
    "@codemirror/lang-xml": "^0.19.2",
    "@codemirror/state": "^0.19.9",
    "@codemirror/view": "^0.19.45",
    "@floating-ui/dom": "^0.3.1",
    "@github/clipboard-copy-element": "^1.1.2",
    "@github/hotkey": "^2.0.0",
    "@github/markdown-toolbar-element": "^2.1.0",
    "@github/time-elements": "^3.1.2",
    "@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
    "@vime/core": "^5.3.1",
    "choices.js": "^10.1.0",
    "flatpickr": "^4.6.9",
    "leaflet": "^1.7.1",
    "leaflet.markercluster": "^1.5.3",
    "lit": "^2.2.0",
    "marked": "^4.0.12",
    "wavesurfer.js": "^6.0.2",
    "xml-formatter": "^2.6.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^16.2.1",
    "@commitlint/config-conventional": "^16.2.1",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/exec": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/gitlab": "^7.0.4",
    "@tailwindcss/forms": "^0.4.0-alpha.2",
    "@tailwindcss/line-clamp": "^0.3.1",
    "@tailwindcss/typography": "^0.5.2",
    "@types/leaflet": "^1.7.9",
    "@types/marked": "^4.0.2",
    "@types/wavesurfer.js": "^6.0.1",
    "@typescript-eslint/eslint-plugin": "^5.12.1",
    "@typescript-eslint/parser": "^5.12.1",
    "cross-env": "^7.0.3",
    "cssnano": "^5.0.17",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.10.0",
    "eslint-config-prettier": "^8.4.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^7.0.4",
    "is-ci": "^3.0.1",
    "lint-staged": "^12.3.4",
    "postcss-import": "^14.0.2",
    "postcss-nesting": "^10.1.2",
    "postcss-preset-env": "^7.4.1",
    "postcss-reporter": "^7.0.5",
    "prettier": "2.5.1",
    "prettier-plugin-organize-imports": "^2.3.4",
    "semantic-release": "^19.0.2",
    "stylelint": "^14.5.3",
    "stylelint-config-standard": "^25.0.0",
    "svgo": "^2.8.0",
    "tailwindcss": "^3.0.23",
    "typescript": "^4.6.2",
    "vite": "^2.8.6",
    "vite-plugin-pwa": "^0.11.13",
    "workbox-build": "^6.5.0",
    "workbox-core": "^6.5.0",
    "workbox-routing": "^6.5.0",
    "workbox-strategies": "^6.5.0"
  },
  "lint-staged": {
    "*.{js,ts,css,md,json}": "prettier --write",
    "*.{ts,js}": "eslint --ext js,ts,tsx app/Resources --fix",
    "*.css": "stylelint --fix"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  }
}