gancio/package.json

126 lines
3.4 KiB
JSON
Raw Normal View History

2019-04-03 00:25:12 +02:00
{
"name": "gancio",
2019-12-18 15:02:38 +01:00
"version": "0.17.14",
"description": "A shared agenda for local communities",
2019-04-03 00:25:12 +02:00
"author": "lesion",
"scripts": {
2019-07-24 21:26:56 +02:00
"dev:nuxt": "cross-env NODE_ENV=development nuxt dev",
"dev": "cross-env DEBUG=*,-babel*,-follow-redirects,-send,-body-parser:*,-express:*,-connect:*,-sequelize:* NODE_ENV=development node server/index.js",
2019-04-03 00:25:12 +02:00
"build": "nuxt build",
"start": "cross-env DEBUG=*,-babel*,-follow-redirects,-send,-body-parser:*,-express:*,-connect:*,-sequelize:* NODE_ENV=production node server/cli.js",
2019-04-03 00:25:12 +02:00
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
2019-07-17 11:04:08 +02:00
"doc": "cd docs && bundle exec jekyll b",
2019-08-07 19:15:15 +02:00
"doc:dev": "cd docs && bundle exec jekyll s --drafts",
2019-06-08 13:18:47 +02:00
"migrate:dev": "sequelize db:migrate",
2019-08-03 15:32:39 +02:00
"migrate": "NODE_ENV=production sequelize db:migrate"
2019-04-03 00:25:12 +02:00
},
2019-06-18 14:45:04 +02:00
"license": "AGPL-3.0",
"bugs": {
"email": "lesion@autistici.org",
2019-09-17 18:16:59 +02:00
"url": "https://framagit.org/les/gancio/issues"
2019-06-18 14:45:04 +02:00
},
2019-12-10 23:16:51 +01:00
"keywords": [
2019-12-18 15:02:38 +01:00
"AP",
"gancio",
"events",
"federation",
"activitypub",
"event",
"server",
"self-host",
"app"
2019-12-10 23:16:51 +01:00
],
2020-01-15 23:14:52 +01:00
"homepage": "https://gancio.org",
"resolutions": {
"prosemirror-model": "1.8.2"
},
2019-06-18 14:45:04 +02:00
"repository": {
"type": "git",
2019-09-17 18:16:59 +02:00
"url": "https://framagit.org/les/gancio"
2019-06-18 14:45:04 +02:00
},
2019-06-07 15:13:06 +02:00
"bin": {
"gancio": "server/cli.js"
2019-06-07 15:13:06 +02:00
},
"files": [
2019-06-22 19:05:52 +02:00
"server/",
2019-09-19 23:28:06 +02:00
"assets/",
2019-06-07 15:13:06 +02:00
"nuxt.config.js",
2019-07-24 22:42:42 +02:00
"static/",
2019-07-03 16:58:24 +02:00
"views/",
2019-07-24 22:42:42 +02:00
"locales/email/",
2019-06-22 19:26:20 +02:00
"store/",
2019-06-22 19:30:12 +02:00
"config/",
2019-07-11 22:57:24 +02:00
".nuxt/"
2019-06-07 15:13:06 +02:00
],
2019-04-03 00:25:12 +02:00
"dependencies": {
2020-01-15 23:14:52 +01:00
"@nuxtjs/auth": "^4.8.5",
"@nuxtjs/axios": "^5.9.3",
2019-07-24 21:26:56 +02:00
"accept-language": "^3.0.18",
2020-01-15 23:14:52 +01:00
"axios": "^0.19.1",
2019-07-07 23:00:31 +02:00
"bcryptjs": "^2.4.3",
2019-04-05 00:10:19 +02:00
"body-parser": "^1.18.3",
2019-12-06 11:30:41 +01:00
"bootstrap": "^4.4.1",
2019-11-06 12:48:41 +01:00
"config": "^3.2.4",
2020-01-15 23:14:52 +01:00
"consola": "^2.11.3",
2019-04-26 23:14:43 +02:00
"cookie-parser": "^1.4.4",
2019-04-03 00:25:12 +02:00
"cors": "^2.8.5",
2019-09-25 21:14:33 +02:00
"cross-env": "^6.0.0",
2020-01-15 23:14:52 +01:00
"dayjs": "^1.8.19",
2019-12-06 11:30:41 +01:00
"element-ui": "^2.13.0",
"email-templates": "^6.1.1",
2019-06-06 23:54:32 +02:00
"express": "^4.17.1",
2019-04-26 23:14:43 +02:00
"express-jwt": "^5.3.1",
2019-09-11 21:20:44 +02:00
"express-middleware-log": "^1.2.0",
"express-oauth-server": "^2.0.0",
"http-signature": "^1.3.1",
2019-08-06 01:12:05 +02:00
"ics": "^2.16.0",
2020-01-15 23:14:52 +01:00
"inquirer": "^7.0.3",
2019-04-03 00:25:12 +02:00
"jsonwebtoken": "^8.5.1",
2019-08-31 22:15:41 +02:00
"less": "^3.10.3",
2019-07-19 00:34:47 +02:00
"lodash": "^4.17.14",
2019-08-05 01:23:02 +02:00
"mkdirp": "^0.5.1",
2020-01-15 23:14:52 +01:00
"modern-css-reset": "^1.0.4",
2019-10-25 18:45:24 +02:00
"moment-timezone": "^0.5.27",
2019-04-23 15:45:52 +02:00
"morgan": "^1.9.1",
2019-07-19 00:34:47 +02:00
"multer": "^1.4.2",
2019-08-02 17:29:55 +02:00
"node-fetch": "^2.6.0",
"nuxt": "^2.11.0",
2019-08-09 01:58:11 +02:00
"nuxt-express-module": "^0.0.11",
2020-01-15 23:14:52 +01:00
"pg": "^7.17.1",
2019-12-04 01:20:31 +01:00
"sanitize-html": "^1.20.1",
"sequelize": "^5.21.3",
2019-08-31 22:15:41 +02:00
"sequelize-cli": "^5.5.1",
2019-12-06 11:30:41 +01:00
"sharp": "^0.23.4",
"sqlite3": "^4.1.1",
2020-01-15 23:14:52 +01:00
"tiptap": "^1.26.6",
"tiptap-extensions": "^1.28.6",
"url": "^0.11.0",
2020-01-15 23:14:52 +01:00
"v-calendar": "^1.0.1",
2019-11-06 12:48:41 +01:00
"vue-awesome": "^4.0.0",
2019-09-06 11:55:38 +02:00
"vue-clipboard2": "^0.3.1",
"vue-i18n": "^8.15.3",
2020-01-15 23:14:52 +01:00
"yargs": "^15.1.0"
2019-04-03 00:25:12 +02:00
},
"devDependencies": {
2019-12-06 11:30:41 +01:00
"@nuxtjs/eslint-config": "^2.0.0",
2019-08-31 22:15:41 +02:00
"babel-eslint": "^10.0.3",
2020-01-15 23:14:52 +01:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
2019-08-31 22:15:41 +02:00
"eslint-config-standard": ">=14.1.0",
"eslint-loader": "^3.0.3",
2020-01-15 23:14:52 +01:00
"eslint-plugin-import": ">=2.20.0",
"eslint-plugin-jest": ">=23.6.0",
"eslint-plugin-node": ">=11.0.0",
"eslint-plugin-nuxt": ">=0.5.0",
"eslint-plugin-prettier": "^3.1.2",
2019-04-03 00:25:12 +02:00
"eslint-plugin-promise": ">=4.0.1",
2019-08-31 22:15:41 +02:00
"eslint-plugin-standard": ">=4.0.1",
2020-01-15 23:14:52 +01:00
"eslint-plugin-vue": "^6.1.2",
2019-06-07 15:13:06 +02:00
"less-loader": "^5.0.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pug-plain-loader": "^1.0.0",
2019-11-06 12:48:41 +01:00
"webpack-cli": "^3.3.10"
2019-04-03 00:25:12 +02:00
}
}