mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

- fix overshooting podcast name when too long in podcast sidebar - update npm packages to latest versions fixes #59
96 lines
3.4 KiB
JSON
96 lines
3.4 KiB
JSON
{
|
|
"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": {
|
|
"build": "npm run build:js && cross-env NODE_ENV=production npm run build:css && npm run build:icons && npm run build:svg",
|
|
"watch:js": "rollup --config --watch",
|
|
"build:js": "rollup --config",
|
|
"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 -r --config=./.svgo.yml",
|
|
"lint": "eslint --ext js,ts app/Views/_assets",
|
|
"lint:fix": "eslint --ext js,ts app/Views/_assets --fix",
|
|
"lint:css": "stylelint \"app/Views/_assets/**/*.css\"",
|
|
"prettier:fix": "prettier --write --ignore-path .gitignore .",
|
|
"typecheck": "tsc",
|
|
"commit": "git-cz"
|
|
},
|
|
"dependencies": {
|
|
"@amcharts/amcharts4": "^4.10.7",
|
|
"@amcharts/amcharts4-geodata": "^4.1.17",
|
|
"@popperjs/core": "^2.5.3",
|
|
"choices.js": "^9.0.1",
|
|
"prosemirror-example-setup": "^1.1.2",
|
|
"prosemirror-markdown": "^1.5.0",
|
|
"prosemirror-state": "^1.3.3",
|
|
"prosemirror-view": "^1.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.11.6",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/preset-env": "^7.11.5",
|
|
"@babel/preset-typescript": "^7.10.4",
|
|
"@commitlint/cli": "^11.0.0",
|
|
"@commitlint/config-conventional": "^11.0.0",
|
|
"@prettier/plugin-php": "^0.15.0",
|
|
"@rollup/plugin-babel": "^5.2.1",
|
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-multi-entry": "^4.0.0",
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
"@tailwindcss/custom-forms": "^0.2.1",
|
|
"@tailwindcss/typography": "^0.2.0",
|
|
"@types/prosemirror-markdown": "^1.0.3",
|
|
"@types/prosemirror-view": "^1.16.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.4.1",
|
|
"@typescript-eslint/parser": "^4.4.1",
|
|
"cross-env": "^7.0.2",
|
|
"cssnano": "^4.1.10",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"husky": "^4.3.0",
|
|
"lint-staged": "^10.4.0",
|
|
"postcss-cli": "^8.1.0",
|
|
"postcss-import": "^12.0.1",
|
|
"postcss-preset-env": "^6.7.0",
|
|
"prettier": "2.1.2",
|
|
"prettier-plugin-organize-imports": "^1.1.1",
|
|
"rollup": "^2.30.0",
|
|
"rollup-plugin-multi-input": "^1.1.1",
|
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
"rollup-plugin-postcss": "^3.1.8",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"stylelint": "^13.7.2",
|
|
"stylelint-config-standard": "^20.0.0",
|
|
"svgo": "^1.3.2",
|
|
"tailwindcss": "^1.9.1",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,css,md,json,php}": "prettier --write",
|
|
"*.{ts,js}": "eslint --ext js,ts,tsx app/Views/_assets --fix",
|
|
"*.css": "stylelint --fix"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|