2020-06-05 13:54:40 +00:00
|
|
|
{
|
|
|
|
"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": {
|
2020-07-27 09:35:34 +00:00
|
|
|
"watch:js": "parcel watch app/Views/_assets/*.js --out-dir public/assets",
|
|
|
|
"build:js": "parcel build app/Views/_assets/*.js --out-dir public/assets",
|
|
|
|
"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 --config=./.svgo.yml",
|
|
|
|
"build": "npm run build:js && cross-env NODE_ENV=production npm run build:css && npm run build:icons && npm run build:svg",
|
2020-06-05 13:54:40 +00:00
|
|
|
"commit": "git-cz"
|
|
|
|
},
|
2020-07-27 09:35:34 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@popperjs/core": "^2.4.4",
|
|
|
|
"codemirror": "^5.55.0",
|
|
|
|
"easymde": "^2.11.0",
|
|
|
|
"prosemirror-example-setup": "^1.1.2",
|
|
|
|
"prosemirror-markdown": "^1.5.0",
|
|
|
|
"prosemirror-state": "^1.3.3",
|
|
|
|
"prosemirror-view": "^1.15.2"
|
|
|
|
},
|
2020-06-05 13:54:40 +00:00
|
|
|
"devDependencies": {
|
2020-06-30 18:17:41 +02:00
|
|
|
"@commitlint/cli": "^9.0.1",
|
|
|
|
"@commitlint/config-conventional": "^9.0.1",
|
2020-06-10 15:00:12 +00:00
|
|
|
"@prettier/plugin-php": "^0.14.2",
|
2020-06-05 13:54:40 +00:00
|
|
|
"@tailwindcss/custom-forms": "^0.2.1",
|
2020-07-27 09:35:34 +00:00
|
|
|
"@tailwindcss/typography": "^0.2.0",
|
|
|
|
"cross-env": "^7.0.2",
|
|
|
|
"cssnano": "^4.1.10",
|
2020-06-05 13:54:40 +00:00
|
|
|
"cz-conventional-changelog": "^3.2.0",
|
2020-07-27 09:35:34 +00:00
|
|
|
"eslint": "^7.5.0",
|
|
|
|
"eslint-config-prettier": "^6.11.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-06-05 13:54:40 +00:00
|
|
|
"husky": "^4.2.5",
|
2020-06-30 18:17:41 +02:00
|
|
|
"lint-staged": "^10.2.11",
|
2020-07-27 09:35:34 +00:00
|
|
|
"parcel-bundler": "^1.12.4",
|
2020-06-05 13:54:40 +00:00
|
|
|
"postcss-cli": "^7.1.1",
|
2020-07-27 09:35:34 +00:00
|
|
|
"postcss-import": "^12.0.1",
|
|
|
|
"postcss-preset-env": "^6.7.0",
|
2020-06-10 15:00:12 +00:00
|
|
|
"prettier": "2.0.5",
|
2020-07-27 09:35:34 +00:00
|
|
|
"svgo": "^1.3.2",
|
2020-06-05 13:54:40 +00:00
|
|
|
"tailwindcss": "^1.4.6"
|
|
|
|
},
|
2020-07-27 09:35:34 +00:00
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
2020-06-05 13:54:40 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-06-10 15:00:12 +00:00
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
|
|
"pre-commit": "lint-staged"
|
2020-06-05 13:54:40 +00:00
|
|
|
}
|
|
|
|
},
|
2020-06-10 15:00:12 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,css,md,php}": "prettier --write"
|
|
|
|
},
|
2020-06-05 13:54:40 +00:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
2020-06-30 18:17:41 +02:00
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
2020-06-05 13:54:40 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-10 15:00:12 +00:00
|
|
|
}
|