2020-06-05 13:54:40 +00:00
|
|
|
{
|
2023-02-21 17:27:45 +00:00
|
|
|
"name": "castopod",
|
2024-02-21 15:16:02 +00:00
|
|
|
"version": "1.10.3",
|
2021-04-23 15:42:54 +00:00
|
|
|
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
|
2020-06-05 13:54:40 +00:00
|
|
|
"private": true,
|
|
|
|
"license": "AGPL-3.0-or-later",
|
2023-11-17 17:26:37 +00:00
|
|
|
"type": "module",
|
2020-06-05 13:54:40 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-02-20 13:23:57 +00:00
|
|
|
"url": "https://code.castopod.org/adaures/castopod.git"
|
2020-06-05 13:54:40 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-07-12 17:47:56 +00:00
|
|
|
"dev": "vite",
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
"serve": "vite preview",
|
2023-02-21 17:27:45 +00:00
|
|
|
"build:static": "pnpm run build:icons && pnpm run build:svg",
|
2023-11-17 17:26:37 +00:00
|
|
|
"build:icons": "svgo -f app/Resources/icons -o public/assets/icons -r --config=./.svgo.icons.cjs",
|
|
|
|
"build:svg": "svgo -f app/Resources/images -o public/assets/images -r --config=./.svgo.cjs",
|
2021-07-12 17:47:56 +00:00
|
|
|
"lint": "eslint --ext js,ts app/Resources",
|
|
|
|
"lint:fix": "eslint --ext js,ts app/Resources --fix",
|
2023-06-12 14:47:38 +00:00
|
|
|
"lint:css": "stylelint -f verbose \"app/Resources/**/*.css\"",
|
|
|
|
"lint:css:fix": "stylelint -f verbose --fix \"app/Resources/**/*.css\"",
|
2024-02-17 13:01:39 +00:00
|
|
|
"prettier": "prettier --check .",
|
|
|
|
"prettier:fix": "prettier --write .",
|
2020-07-28 15:57:48 +00:00
|
|
|
"typecheck": "tsc",
|
2021-07-26 13:10:46 +00:00
|
|
|
"commit": "cz",
|
2021-05-21 10:13:21 +00:00
|
|
|
"release": "semantic-release",
|
2024-02-17 13:01:39 +00:00
|
|
|
"prepare": "is-ci || husky"
|
2020-06-05 13:54:40 +00:00
|
|
|
},
|
2020-07-27 09:35:34 +00:00
|
|
|
"dependencies": {
|
2023-08-21 16:13:03 +00:00
|
|
|
"@amcharts/amcharts4": "^4.10.38",
|
2023-12-21 15:21:45 +00:00
|
|
|
"@amcharts/amcharts4-geodata": "^4.1.28",
|
2024-01-01 22:54:59 +00:00
|
|
|
"@codemirror/commands": "^6.3.3",
|
2023-02-21 17:27:45 +00:00
|
|
|
"@codemirror/lang-xml": "^6.0.2",
|
2024-02-17 13:01:39 +00:00
|
|
|
"@codemirror/language": "^6.10.1",
|
2024-01-01 22:54:59 +00:00
|
|
|
"@codemirror/state": "^6.4.0",
|
2024-02-17 13:01:39 +00:00
|
|
|
"@codemirror/view": "^6.24.0",
|
|
|
|
"@floating-ui/dom": "^1.6.3",
|
2023-11-15 16:17:43 +00:00
|
|
|
"@github/clipboard-copy-element": "^1.3.0",
|
2023-12-21 15:21:45 +00:00
|
|
|
"@github/hotkey": "^3.1.0",
|
2023-11-15 16:17:43 +00:00
|
|
|
"@github/markdown-toolbar-element": "^2.2.1",
|
2024-02-17 13:01:39 +00:00
|
|
|
"@github/relative-time-element": "^4.3.1",
|
2023-02-21 17:27:45 +00:00
|
|
|
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
|
2023-08-21 16:13:03 +00:00
|
|
|
"@vime/core": "^5.4.1",
|
2023-02-21 17:27:45 +00:00
|
|
|
"choices.js": "^10.2.0",
|
2022-07-05 15:55:19 +00:00
|
|
|
"codemirror": "^6.0.1",
|
2022-07-02 17:15:29 +00:00
|
|
|
"flatpickr": "^4.6.13",
|
2023-06-05 12:08:32 +00:00
|
|
|
"leaflet": "^1.9.4",
|
2021-10-18 16:44:07 +00:00
|
|
|
"leaflet.markercluster": "^1.5.3",
|
2024-02-17 13:01:39 +00:00
|
|
|
"lit": "^3.1.2",
|
|
|
|
"marked": "^11.2.0",
|
|
|
|
"wavesurfer.js": "^7.7.3",
|
|
|
|
"xml-formatter": "^3.6.2"
|
2020-07-27 09:35:34 +00:00
|
|
|
},
|
2020-06-05 13:54:40 +00:00
|
|
|
"devDependencies": {
|
2024-02-17 13:01:39 +00:00
|
|
|
"@commitlint/cli": "^18.6.1",
|
|
|
|
"@commitlint/config-conventional": "^18.6.2",
|
|
|
|
"@csstools/css-tokenizer": "^2.2.3",
|
2023-04-14 11:11:53 +00:00
|
|
|
"@semantic-release/changelog": "^6.0.3",
|
2021-12-16 15:25:30 +00:00
|
|
|
"@semantic-release/exec": "^6.0.3",
|
2021-11-05 14:36:34 +00:00
|
|
|
"@semantic-release/git": "^10.0.1",
|
2024-02-17 13:01:39 +00:00
|
|
|
"@semantic-release/gitlab": "^13.0.2",
|
2023-11-15 16:17:43 +00:00
|
|
|
"@tailwindcss/forms": "^0.5.7",
|
2023-09-09 10:52:01 +00:00
|
|
|
"@tailwindcss/typography": "^0.5.10",
|
2023-11-15 16:17:43 +00:00
|
|
|
"@types/leaflet": "^1.9.8",
|
2024-02-17 13:01:39 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
|
|
"@typescript-eslint/parser": "^6.21.0",
|
2023-08-21 16:13:03 +00:00
|
|
|
"all-contributors-cli": "^6.26.1",
|
2023-02-21 17:27:45 +00:00
|
|
|
"commitizen": "^4.3.0",
|
2021-04-02 17:20:02 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2024-02-17 13:01:39 +00:00
|
|
|
"cssnano": "^6.0.3",
|
2020-09-04 09:09:26 +00:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2023-12-21 15:21:45 +00:00
|
|
|
"eslint": "^8.56.0",
|
2024-02-17 13:01:39 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
|
|
"husky": "^9.0.11",
|
2021-11-05 14:36:34 +00:00
|
|
|
"is-ci": "^3.0.1",
|
2024-02-17 13:01:39 +00:00
|
|
|
"lint-staged": "^15.2.2",
|
|
|
|
"postcss": "^8.4.35",
|
|
|
|
"postcss-import": "^16.0.1",
|
2023-12-21 15:21:45 +00:00
|
|
|
"postcss-nesting": "^12.0.2",
|
2023-11-15 16:17:43 +00:00
|
|
|
"postcss-preset-env": "^9.3.0",
|
2024-02-17 13:01:39 +00:00
|
|
|
"postcss-reporter": "^7.1.0",
|
|
|
|
"prettier": "3.2.5",
|
2023-11-15 16:17:43 +00:00
|
|
|
"prettier-plugin-organize-imports": "^3.2.4",
|
2024-02-17 13:01:39 +00:00
|
|
|
"semantic-release": "^23.0.2",
|
|
|
|
"stylelint": "^16.2.1",
|
2024-01-01 22:54:59 +00:00
|
|
|
"stylelint-config-standard": "^36.0.0",
|
2024-02-17 13:01:39 +00:00
|
|
|
"svgo": "^3.2.0",
|
|
|
|
"tailwindcss": "^3.4.1",
|
2023-12-21 15:21:45 +00:00
|
|
|
"typescript": "^5.3.3",
|
2024-02-17 13:01:39 +00:00
|
|
|
"vite": "^5.1.3",
|
|
|
|
"vite-plugin-pwa": "^0.17.5",
|
2023-06-05 12:08:32 +00:00
|
|
|
"workbox-build": "^7.0.0",
|
|
|
|
"workbox-core": "^7.0.0",
|
|
|
|
"workbox-routing": "^7.0.0",
|
|
|
|
"workbox-strategies": "^7.0.0"
|
2020-06-05 13:54:40 +00:00
|
|
|
},
|
2020-06-10 15:00:12 +00:00
|
|
|
"lint-staged": {
|
2021-05-19 16:35:13 +00:00
|
|
|
"*.{js,ts,css,md,json}": "prettier --write",
|
2021-07-12 17:47:56 +00:00
|
|
|
"*.{ts,js}": "eslint --ext js,ts,tsx app/Resources --fix",
|
2020-07-28 15:57:48 +00:00
|
|
|
"*.css": "stylelint --fix"
|
2020-06-10 15:00:12 +00:00
|
|
|
},
|
2020-06-05 13:54:40 +00:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
2021-07-26 13:10:46 +00:00
|
|
|
"path": "cz-conventional-changelog"
|
2020-06-05 13:54:40 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-10 15:00:12 +00:00
|
|
|
}
|