Newer
Older
"version": "1.0.0-alpha.80",
"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",
},
"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\"",

Yassine Doghri
committed
"prettier": "prettier --check --ignore-path .gitignore .",

Yassine Doghri
committed
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"typecheck": "tsc",
"commit": "cz",
"release": "semantic-release",
"prepare": "is-ci || husky install"

Yassine Doghri
committed
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/commands": "^0.19.6",
"@codemirror/lang-xml": "^0.19.2",
"@codemirror/state": "^0.19.6",
"@codemirror/view": "^0.19.32",
"@floating-ui/dom": "^0.1.10",
"@github/hotkey": "^1.6.1",
"@github/markdown-toolbar-element": "^2.1.0",

Yassine Doghri
committed
"@github/time-elements": "^3.1.2",
"choices.js": "^9.0.1",

Yassine Doghri
committed

Yassine Doghri
committed
"leaflet.markercluster": "^1.5.3",

Yassine Doghri
committed
"xml-formatter": "^2.5.1"
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",

Yassine Doghri
committed
"@semantic-release/exec": "^6.0.3",

Yassine Doghri
committed
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^7.0.4",
"@tailwindcss/forms": "^0.4.0-alpha.2",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0-alpha.3",
"@types/leaflet": "^1.7.6",
"@types/marked": "^4.0.1",
"@types/wavesurfer.js": "^5.2.2",
"eslint-config-prettier": "^8.3.0",

Yassine Doghri
committed
"eslint-plugin-prettier": "^4.0.0",

Yassine Doghri
committed
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.0.3",
"postcss-preset-env": "^7.0.2",

Yassine Doghri
committed
"postcss-reporter": "^7.0.4",

Yassine Doghri
committed
"semantic-release": "^18.0.1",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",

Yassine Doghri
committed
"tailwindcss": "^3.0.5",
"typescript": "^4.5.4",
"vite": "^2.7.3",
"vite-plugin-pwa": "^0.11.12",
"workbox-build": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2"
"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"
}
}