2020-06-05 13:54:40 +00:00
|
|
|
{
|
2021-04-23 15:42:54 +00:00
|
|
|
"name": "castopod-host",
|
2021-12-29 10:08:43 +00:00
|
|
|
"version": "1.0.0-alpha.80",
|
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",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-04-23 15:42:54 +00:00
|
|
|
"url": "https://code.podlibre.org/podlibre/castopod-host.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",
|
2021-07-29 15:06:48 +00:00
|
|
|
"build:static": "npm run build:icons && npm run build:svg",
|
2021-07-12 17:47:56 +00:00
|
|
|
"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\"",
|
2021-05-24 14:19:46 +00:00
|
|
|
"prettier": "prettier --check --ignore-path .gitignore .",
|
2020-08-04 11:25:22 +00:00
|
|
|
"prettier:fix": "prettier --write --ignore-path .gitignore .",
|
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",
|
|
|
|
"prepare": "is-ci || husky install"
|
2020-06-05 13:54:40 +00:00
|
|
|
},
|
2020-07-27 09:35:34 +00:00
|
|
|
"dependencies": {
|
2021-07-26 13:10:46 +00:00
|
|
|
"@amcharts/amcharts4-geodata": "^4.1.21",
|
2021-08-10 14:25:13 +00:00
|
|
|
"@amcharts/amcharts4": "^4.10.21",
|
2021-08-11 12:15:20 +00:00
|
|
|
"@codemirror/basic-setup": "^0.18.2",
|
|
|
|
"@codemirror/commands": "^0.18.3",
|
|
|
|
"@codemirror/lang-xml": "^0.18.0",
|
|
|
|
"@codemirror/state": "^0.18.7",
|
|
|
|
"@codemirror/view": "^0.18.19",
|
2021-08-10 14:25:13 +00:00
|
|
|
"@github/clipboard-copy-element": "^1.1.2",
|
2021-07-29 09:41:36 +00:00
|
|
|
"@github/markdown-toolbar-element": "^1.5.1",
|
2021-08-09 15:56:59 +00:00
|
|
|
"@github/time-elements": "^3.1.2",
|
2021-08-10 14:25:13 +00:00
|
|
|
"@popperjs/core": "^2.9.3",
|
2021-08-09 10:28:16 +00:00
|
|
|
"@vime/core": "^5.0.33",
|
2020-10-02 15:38:16 +00:00
|
|
|
"choices.js": "^9.0.1",
|
2021-04-02 17:20:02 +00:00
|
|
|
"flatpickr": "^4.6.9",
|
2021-09-17 15:50:55 +00:00
|
|
|
"leaflet.markercluster": "^1.5.1",
|
2021-07-29 09:41:36 +00:00
|
|
|
"leaflet": "^1.7.1",
|
2021-07-12 17:47:56 +00:00
|
|
|
"lit": "^2.0.0-rc.2",
|
2021-08-11 12:15:20 +00:00
|
|
|
"marked": "^2.1.3",
|
|
|
|
"xml-formatter": "^2.4.0"
|
2020-07-27 09:35:34 +00:00
|
|
|
},
|
2020-06-05 13:54:40 +00:00
|
|
|
"devDependencies": {
|
2021-07-26 13:10:46 +00:00
|
|
|
"@commitlint/cli": "^13.1.0",
|
|
|
|
"@commitlint/config-conventional": "^13.1.0",
|
|
|
|
"@semantic-release/changelog": "^5.0.1",
|
|
|
|
"@semantic-release/exec": "^5.0.0",
|
|
|
|
"@semantic-release/git": "^9.0.0",
|
2021-08-10 14:25:13 +00:00
|
|
|
"@semantic-release/gitlab": "^6.2.2",
|
2021-07-26 13:10:46 +00:00
|
|
|
"@tailwindcss/forms": "^0.3.3",
|
|
|
|
"@tailwindcss/line-clamp": "^0.2.1",
|
|
|
|
"@tailwindcss/typography": "^0.4.1",
|
2021-09-17 15:50:55 +00:00
|
|
|
"@types/leaflet": "^1.7.5",
|
2021-07-29 09:41:36 +00:00
|
|
|
"@types/marked": "^2.0.4",
|
2021-08-10 14:25:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.29.1",
|
|
|
|
"@typescript-eslint/parser": "^4.29.1",
|
2021-04-02 17:20:02 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2021-07-26 13:10:46 +00:00
|
|
|
"cssnano": "^5.0.7",
|
2020-09-04 09:09:26 +00:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2021-07-26 13:10:46 +00:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
2021-08-10 14:25:13 +00:00
|
|
|
"eslint": "^7.32.0",
|
2021-07-26 13:10:46 +00:00
|
|
|
"husky": "^7.0.1",
|
2021-05-21 10:13:21 +00:00
|
|
|
"is-ci": "^3.0.0",
|
2021-08-10 14:25:13 +00:00
|
|
|
"lint-staged": "^11.1.2",
|
2021-07-29 09:41:36 +00:00
|
|
|
"lit": "^2.0.0-rc.2",
|
2021-07-26 13:10:46 +00:00
|
|
|
"postcss-import": "^14.0.2",
|
2020-07-27 09:35:34 +00:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2021-09-03 16:34:06 +00:00
|
|
|
"postcss-reporter": "^7.0.2",
|
2021-07-26 13:10:46 +00:00
|
|
|
"prettier-plugin-organize-imports": "^2.3.3",
|
2021-07-29 09:41:36 +00:00
|
|
|
"prettier": "2.3.2",
|
2021-07-26 13:10:46 +00:00
|
|
|
"semantic-release": "^17.4.4",
|
|
|
|
"stylelint-config-standard": "^22.0.0",
|
2021-07-29 09:41:36 +00:00
|
|
|
"stylelint": "^13.13.1",
|
2021-07-26 13:10:46 +00:00
|
|
|
"svgo": "^2.3.1",
|
2021-09-03 16:34:06 +00:00
|
|
|
"tailwindcss-scroll-snap": "^1.1.0",
|
2021-07-26 13:10:46 +00:00
|
|
|
"tailwindcss": "^2.2.7",
|
|
|
|
"typescript": "^4.3.5",
|
2021-07-29 09:41:36 +00:00
|
|
|
"vite": "^2.4.4"
|
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
|
|
|
}
|