2018-08-28 22:50:22 +02:00
|
|
|
{
|
|
|
|
"name": "vikunja-frontend",
|
2023-01-17 14:46:36 +00:00
|
|
|
"description": "The todo app to organize your life.",
|
2018-08-28 22:50:22 +02:00
|
|
|
"private": true,
|
2023-01-17 14:46:36 +00:00
|
|
|
"version": "0.10.0",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://kolaente.dev/vikunja/frontend"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://kolaente.dev/vikunja/frontend/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://vikunja.io/",
|
|
|
|
"funding": "https://opencollective.com/vikunja",
|
2023-05-15 01:04:39 +00:00
|
|
|
"packageManager": "pnpm@8.5.1",
|
2023-01-17 14:46:36 +00:00
|
|
|
"keywords": [
|
|
|
|
"todo",
|
|
|
|
"productivity",
|
|
|
|
"task management",
|
|
|
|
"organisation",
|
|
|
|
"gantt",
|
|
|
|
"kanban"
|
|
|
|
],
|
2018-08-28 22:50:22 +02:00
|
|
|
"scripts": {
|
2021-07-25 13:27:15 +00:00
|
|
|
"serve": "vite",
|
2022-12-15 22:35:17 +01:00
|
|
|
"preview": "vite preview --port 4173",
|
|
|
|
"preview:dev": "vite preview --outDir dist-dev --mode development --port 4173",
|
2021-07-26 20:26:53 +00:00
|
|
|
"build": "vite build && workbox copyLibraries dist/",
|
2021-10-07 13:59:10 +02:00
|
|
|
"build:modern-only": "BUILD_MODERN_ONLY=true vite build && workbox copyLibraries dist/",
|
2022-12-13 19:01:56 +00:00
|
|
|
"build:dev": "vite build --mode development --outDir dist-dev/",
|
2021-07-26 16:59:59 +02:00
|
|
|
"lint": "eslint --ignore-pattern '*.test.*' ./src --ext .vue,.js,.ts",
|
2022-12-15 22:35:17 +01:00
|
|
|
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173 'cypress run --e2e --browser chrome'",
|
|
|
|
"test:e2e-record": "start-server-and-test preview http://127.0.0.1:4173 'cypress run --e2e --browser chrome --record'",
|
|
|
|
"test:e2e-dev-dev": "start-server-and-test preview:dev http://127.0.0.1:4173 'cypress open --e2e'",
|
|
|
|
"test:e2e-dev": "start-server-and-test preview http://127.0.0.1:4173 'cypress open --e2e'",
|
2023-01-29 20:24:15 +01:00
|
|
|
"test:unit": "vitest --dir ./src",
|
2022-04-10 02:40:15 +02:00
|
|
|
"typecheck": "vue-tsc --noEmit && vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
2023-01-05 10:29:16 +00:00
|
|
|
"browserslist:update": "pnpm dlx browserslist@latest --update-db",
|
|
|
|
"fonts:update": "pnpm fonts:download && pnpm fonts:subset",
|
2022-12-15 21:37:02 +00:00
|
|
|
"fonts:download": "./scripts/fonts-download.sh",
|
2022-11-17 17:05:10 +01:00
|
|
|
"fonts:subset": "./scripts/fonts-subset.sh",
|
|
|
|
"story:dev": "histoire dev",
|
|
|
|
"story:build": "histoire build",
|
|
|
|
"story:preview": "histoire preview"
|
2018-08-28 22:50:22 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-03-27 18:05:59 +00:00
|
|
|
"@fortawesome/fontawesome-svg-core": "6.4.0",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "6.4.0",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "6.4.0",
|
2023-01-24 15:56:09 +00:00
|
|
|
"@fortawesome/vue-fontawesome": "3.0.3",
|
2022-07-21 13:35:54 +00:00
|
|
|
"@github/hotkey": "2.0.1",
|
2023-01-25 12:29:41 +00:00
|
|
|
"@infectoone/vue-ganttastic": "2.1.4",
|
2023-03-22 18:05:17 +00:00
|
|
|
"@intlify/unplugin-vue-i18n": "0.10.0",
|
2023-05-16 22:05:07 +00:00
|
|
|
"@kyvg/vue3-notification": "2.9.1",
|
2023-05-23 13:04:35 +00:00
|
|
|
"@sentry/tracing": "7.53.0",
|
|
|
|
"@sentry/vue": "7.53.0",
|
2023-05-02 01:05:11 +00:00
|
|
|
"@vueuse/core": "10.1.2",
|
2023-04-28 00:04:55 +00:00
|
|
|
"axios": "1.4.0",
|
2023-02-17 13:04:37 +00:00
|
|
|
"blurhash": "2.0.5",
|
2021-11-23 09:20:40 +00:00
|
|
|
"bulma-css-variables": "0.9.33",
|
2020-12-02 07:05:10 +00:00
|
|
|
"camel-case": "4.1.2",
|
2023-04-27 09:04:38 +00:00
|
|
|
"codemirror": "5.65.13",
|
2023-04-30 03:04:41 +00:00
|
|
|
"date-fns": "2.30.0",
|
2022-12-06 16:25:41 +00:00
|
|
|
"dayjs": "1.11.7",
|
2023-05-06 13:04:56 +00:00
|
|
|
"dompurify": "3.0.3",
|
2022-09-20 15:38:56 +00:00
|
|
|
"easymde": "2.18.0",
|
2022-10-27 15:44:11 +02:00
|
|
|
"fast-deep-equal": "3.1.3",
|
2022-04-20 11:36:37 +00:00
|
|
|
"flatpickr": "4.6.13",
|
2022-11-11 11:05:45 +00:00
|
|
|
"flexsearch": "0.7.31",
|
2022-10-04 11:28:33 +00:00
|
|
|
"floating-vue": "2.0.0-beta.20",
|
2023-04-29 14:04:50 +00:00
|
|
|
"highlight.js": "11.8.0",
|
2021-07-28 20:13:00 +00:00
|
|
|
"is-touch-device": "1.0.1",
|
2023-02-07 13:04:03 +00:00
|
|
|
"klona": "2.0.6",
|
2021-10-18 06:12:47 +00:00
|
|
|
"lodash.debounce": "4.0.8",
|
2023-05-11 16:05:24 +00:00
|
|
|
"marked": "5.0.2",
|
2023-05-08 16:04:47 +00:00
|
|
|
"pinia": "2.0.36",
|
2020-12-10 15:36:38 +00:00
|
|
|
"register-service-worker": "1.7.2",
|
2020-12-02 12:41:52 +00:00
|
|
|
"snake-case": "3.0.4",
|
2022-04-09 20:00:29 +02:00
|
|
|
"sortablejs": "1.15.0",
|
2023-05-04 00:05:07 +00:00
|
|
|
"ufo": "1.1.2",
|
2023-02-02 07:03:57 +00:00
|
|
|
"vue": "3.2.47",
|
2023-01-15 15:44:36 +00:00
|
|
|
"vue-advanced-cropper": "2.8.8",
|
2023-03-15 10:05:24 +00:00
|
|
|
"vue-flatpickr-component": "11.0.3",
|
2022-08-05 18:28:31 +00:00
|
|
|
"vue-i18n": "9.2.2",
|
2023-05-18 16:05:14 +00:00
|
|
|
"vue-router": "4.2.1",
|
2022-08-02 11:40:56 +00:00
|
|
|
"workbox-precaching": "6.5.4",
|
2022-05-22 19:53:21 +02:00
|
|
|
"zhyswan-vuedraggable": "4.1.3"
|
2018-08-28 22:50:22 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-12 22:08:18 +00:00
|
|
|
"@4tw/cypress-drag-drop": "2.2.3",
|
2023-03-20 22:05:07 +00:00
|
|
|
"@cypress/vite-dev-server": "5.0.5",
|
2023-03-20 17:06:24 +00:00
|
|
|
"@cypress/vue": "5.0.5",
|
2023-05-15 17:04:44 +00:00
|
|
|
"@faker-js/faker": "8.0.1",
|
2023-04-14 11:04:40 +00:00
|
|
|
"@histoire/plugin-screenshot": "0.16.1",
|
|
|
|
"@histoire/plugin-vue": "0.16.1",
|
2023-05-23 01:05:56 +00:00
|
|
|
"@rushstack/eslint-patch": "1.3.0",
|
2023-05-12 05:04:41 +00:00
|
|
|
"@tsconfig/node18": "2.0.1",
|
2023-01-23 17:17:39 +00:00
|
|
|
"@types/codemirror": "5.60.7",
|
2023-04-20 08:04:42 +00:00
|
|
|
"@types/dompurify": "3.0.2",
|
2022-03-17 12:21:30 +00:00
|
|
|
"@types/flexsearch": "0.7.3",
|
2023-03-22 17:42:18 +01:00
|
|
|
"@types/is-touch-device": "1.0.0",
|
2022-10-04 18:25:43 +00:00
|
|
|
"@types/lodash.debounce": "4.0.7",
|
2023-05-19 09:06:04 +00:00
|
|
|
"@types/marked": "5.0.0",
|
2023-05-23 12:04:31 +00:00
|
|
|
"@types/node": "18.16.14",
|
2022-10-18 08:07:53 +00:00
|
|
|
"@types/postcss-preset-env": "7.7.0",
|
2023-03-22 17:42:18 +01:00
|
|
|
"@types/sortablejs": "1.15.1",
|
2023-05-23 12:04:57 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.59.7",
|
|
|
|
"@typescript-eslint/parser": "5.59.7",
|
2023-04-25 15:04:36 +00:00
|
|
|
"@vitejs/plugin-legacy": "4.0.3",
|
2023-05-12 11:04:45 +00:00
|
|
|
"@vitejs/plugin-vue": "4.2.3",
|
2023-04-25 15:05:09 +00:00
|
|
|
"@vue/eslint-config-typescript": "11.0.3",
|
2023-03-21 16:05:20 +00:00
|
|
|
"@vue/test-utils": "2.3.2",
|
2023-05-12 04:05:34 +00:00
|
|
|
"@vue/tsconfig": "0.4.0",
|
2023-03-10 07:05:55 +00:00
|
|
|
"autoprefixer": "10.4.14",
|
2023-02-06 01:04:02 +00:00
|
|
|
"browserslist": "4.21.5",
|
2023-05-23 01:05:28 +00:00
|
|
|
"caniuse-lite": "1.0.30001489",
|
2023-03-29 13:31:20 +02:00
|
|
|
"css-has-pseudo": "5.0.2",
|
2023-04-01 21:04:41 +00:00
|
|
|
"csstype": "3.1.2",
|
2023-05-24 00:04:34 +00:00
|
|
|
"cypress": "12.13.0",
|
2023-05-13 01:04:45 +00:00
|
|
|
"esbuild": "0.17.19",
|
2023-05-23 01:07:23 +00:00
|
|
|
"eslint": "8.41.0",
|
2023-05-16 00:05:18 +00:00
|
|
|
"eslint-plugin-vue": "9.13.0",
|
2023-05-23 01:07:51 +00:00
|
|
|
"happy-dom": "9.20.1",
|
2023-04-14 11:04:40 +00:00
|
|
|
"histoire": "0.16.1",
|
2023-04-19 20:04:47 +00:00
|
|
|
"postcss": "8.4.23",
|
2023-01-04 15:54:09 +00:00
|
|
|
"postcss-easing-gradients": "3.0.1",
|
|
|
|
"postcss-easings": "3.0.1",
|
2023-03-29 13:31:20 +02:00
|
|
|
"postcss-focus-within": "7.0.2",
|
2023-05-23 01:08:18 +00:00
|
|
|
"postcss-preset-env": "8.4.1",
|
2023-05-23 12:05:53 +00:00
|
|
|
"rollup": "3.23.0",
|
2022-12-30 13:13:05 +00:00
|
|
|
"rollup-plugin-visualizer": "5.9.0",
|
2023-04-26 10:05:07 +00:00
|
|
|
"sass": "1.62.1",
|
2023-02-27 13:05:45 +00:00
|
|
|
"start-server-and-test": "2.0.0",
|
2023-04-07 18:04:25 +00:00
|
|
|
"typescript": "5.0.4",
|
2023-05-18 19:05:31 +00:00
|
|
|
"vite": "4.3.8",
|
2023-03-09 18:04:51 +00:00
|
|
|
"vite-plugin-inject-preload": "1.3.1",
|
2023-05-23 01:09:13 +00:00
|
|
|
"vite-plugin-pwa": "0.15.0",
|
2022-12-24 10:36:36 +00:00
|
|
|
"vite-svg-loader": "4.0.0",
|
2023-05-17 15:05:09 +00:00
|
|
|
"vitest": "0.31.1",
|
2023-05-13 08:04:55 +00:00
|
|
|
"vue-tsc": "1.6.5",
|
2022-12-16 20:53:31 +00:00
|
|
|
"wait-on": "7.0.1",
|
2022-08-02 11:40:56 +00:00
|
|
|
"workbox-cli": "6.5.4"
|
2023-03-14 17:05:27 +01:00
|
|
|
},
|
|
|
|
"pnpm": {
|
|
|
|
"patchedDependencies": {
|
|
|
|
"flexsearch@0.7.31": "patches/flexsearch@0.7.31.patch"
|
|
|
|
}
|
2023-01-17 14:46:36 +00:00
|
|
|
}
|
2021-07-19 18:20:49 +00:00
|
|
|
}
|