gancio/package.json
lesion e0d3b107a5
v1.5.4
- Update webcomponent deps
  - Refactor datime display in webcomponent
  - Force flyer download
  - Restore range events on calendar
  - Fix limit/max events for mariadb #183
  - Fix endtime selection
  - Fix microdata address

# On branch master
# Your branch is up to date with 'origin/master'.
#
# Changes to be committed:
#   (use "git restore --staged <file>..." to unstage)
# 	modified:   CHANGELOG
# 	modified:   docs/changelog.md
# 	modified:   package.json
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
# 	gancio_plugins/
# 	yunohost/
#
# diff --git a/CHANGELOG b/CHANGELOG
# index 954e339..0a7c66d 100644
# --- a/CHANGELOG
# +++ b/CHANGELOG
# @@ -1,5 +1,14 @@
#  All notable changes to this project will be documented in this file.
#
# +### 1.5.4 - 6 set '22
# +  - Update webcomponent deps
# +  - Refactor datime display in webcomponent
# +  - Force flyer download
# +  - Restore range events on calendar
# +  - Fix limit/max events for mariadb #183
# +  - Fix endtime selection
# +  - Fix microdata address
# +
#  ### 1.5.3 - 30 aug '22
#    - Fix end time selection when it's in the next day
#
# diff --git a/docs/changelog.md b/docs/changelog.md
# index 59d95e1..d441d93 100644
# --- a/docs/changelog.md
# +++ b/docs/changelog.md
# @@ -8,6 +8,16 @@ nav_order: 10
#
#  All notable changes to this project will be documented in this file.
#
# +### 1.5.4 - 6 set '22
# +  - Update webcomponent deps
# +  - Refactor datime display in webcomponent
# +  - Force flyer download
# +  - Restore range events on calendar
# +  - Fix limit/max events for mariadb #183
# +  - Fix endtime selection
# +  - Fix microdata address
# +
# +
#  ### 1.5.3 - 30 aug '22
#    - Fix end time selection when it's in the next day
#
# diff --git a/package.json b/package.json
# index 40ed9eb..776596b 100644
# --- a/package.json
# +++ b/package.json
# @@ -1,6 +1,6 @@
#  {
#    "name": "gancio",
# -  "version": "1.5.3",
# +  "version": "1.5.4",
#    "description": "A shared agenda for local communities",
#    "author": "lesion",
#    "scripts": {
2022-09-06 21:58:06 +02:00

125 lines
3.4 KiB
JSON

{
"name": "gancio",
"version": "1.5.4",
"description": "A shared agenda for local communities",
"author": "lesion",
"scripts": {
"build": "nuxt build --modern",
"start:inspect": "NODE_ENV=production node --inspect node_modules/.bin/nuxt start --modern",
"dev": "nuxt dev",
"test-sqlite": "export NODE_ENV=test; export DB=sqlite; jest --bail=1",
"test-mariadb": "export NODE_ENV=test; export DB=mariadb; jest --bail=1",
"test-postgresql": "export NODE_ENV=test; export DB=postgresql; jest --bail=1",
"start": "nuxt start --modern",
"doc": "cd docs && bundle exec jekyll b",
"doc:dev": "cd docs && bundle exec jekyll s --drafts",
"migrate": "NODE_ENV=production sequelize db:migrate",
"migrate:dev": "sequelize db:migrate",
"build:wc": "cd webcomponents; yarn build:lib; cp dist/gancio-events.es.js ../wp-plugin/js/; cp dist/gancio-events.es.js ../assets/; cp dist/gancio-events.es.js ../docs/assets/js/"
},
"files": [
"server/",
"assets/",
"nuxt.config.js",
"static/",
"views/",
"locales/email/",
"locales/",
"store/",
".nuxt/",
"yarn.lock"
],
"engines": {
"node": ">=14 <=16"
},
"dependencies": {
"@mdi/js": "^7.0.96",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.13.5",
"@nuxtjs/sitemap": "^2.4.0",
"accept-language": "^3.0.18",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"dompurify": "^2.3.10",
"email-templates": "^10.0.1",
"express": "^4.18.1",
"express-oauth-server": "lesion/express-oauth-server#master",
"http-signature": "^1.3.6",
"https-proxy-agent": "^5.0.1",
"ical.js": "^1.5.0",
"ics": "^2.37.0",
"jsdom": "^20.0.0",
"jsonwebtoken": "^8.5.1",
"linkify-html": "^3.0.4",
"linkifyjs": "3.0.5",
"lodash": "^4.17.21",
"mariadb": "^3.0.1",
"microformat-node": "^2.0.1",
"minify-css-string": "^1.0.0",
"mkdirp": "^1.0.4",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nuxt-edge": "2.16.0-27616340.013f051b",
"pg": "^8.8.0",
"sequelize": "^6.21.4",
"sequelize-slugify": "^1.6.1",
"sharp": "^0.27.2",
"sqlite3": "^5.0.11",
"tiptap": "^1.32.0",
"tiptap-extensions": "^1.35.0",
"umzug": "^2.3.0",
"v-calendar": "^2.4.1",
"vue-i18n": "^8.26.7",
"vuetify": "2.6.9",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1",
"yargs": "^17.5.0"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.12.3",
"jest": "^29.0.0",
"prettier": "^2.7.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.53.0",
"sequelize-cli": "^6.3.0",
"supertest": "^6.2.4",
"webpack": "4",
"webpack-cli": "^4.10.0"
},
"resolutions": {
"nth-check": "^2.0.1",
"express-oauth-server/**/lodash": "^4.17.21",
"glob-parent": "^5.1.2",
"moment": "^2.29.2"
},
"bin": {
"gancio": "server/cli.js"
},
"bugs": {
"email": "lesion@autistici.org",
"url": "https://framagit.org/les/gancio/issues"
},
"homepage": "https://gancio.org",
"keywords": [
"AP",
"gancio",
"events",
"federation",
"activitypub",
"event",
"server",
"self-host",
"app"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://framagit.org/les/gancio"
},
"snyk": true
}