Frontend Roadmap here:
https://my.vikunja.cloud/share/UrdhKPqumxDXUbYpEGJLSIyNTwAnbBzVlwdDpRbv/auth
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
4.0 KiB
148 lines
4.0 KiB
{ |
|
"name": "vikunja-frontend", |
|
"version": "0.10.0", |
|
"private": true, |
|
"scripts": { |
|
"serve": "vite", |
|
"serve:dist-dev": "node scripts/serve-dist.js", |
|
"serve:dist": "vite preview --port 4173", |
|
"build": "vite build && workbox copyLibraries dist/", |
|
"build:modern-only": "BUILD_MODERN_ONLY=true vite build && workbox copyLibraries dist/", |
|
"build:dev": "vite build -m development --outDir dist-dev/", |
|
"typecheck": "vue-tsc --noEmit", |
|
"lint": "eslint --ignore-pattern '*.test.*' ./src --ext .vue,.js,.ts", |
|
"cypress:open": "cypress open", |
|
"test:unit": "vitest run", |
|
"test:unit-watch": "vitest watch", |
|
"test:frontend": "cypress run", |
|
"browserslist:update": "npx browserslist@latest --update-db" |
|
}, |
|
"dependencies": { |
|
"@github/hotkey": "2.0.0", |
|
"@kyvg/vue3-notification": "2.3.4", |
|
"@sentry/tracing": "7.4.1", |
|
"@sentry/vue": "7.4.1", |
|
"@types/is-touch-device": "1.0.0", |
|
"@types/sortablejs": "1.13.0", |
|
"@vueuse/core": "8.7.5", |
|
"@vueuse/router": "8.7.5", |
|
"blurhash": "1.1.5", |
|
"bulma-css-variables": "0.9.33", |
|
"camel-case": "4.1.2", |
|
"date-fns": "2.28.0", |
|
"dompurify": "2.3.8", |
|
"easymde": "2.16.1", |
|
"flatpickr": "4.6.13", |
|
"flexsearch": "0.7.21", |
|
"highlight.js": "11.5.1", |
|
"is-touch-device": "1.0.1", |
|
"lodash.clonedeep": "4.5.0", |
|
"lodash.debounce": "4.0.8", |
|
"marked": "4.0.17", |
|
"minimist": "1.2.6", |
|
"register-service-worker": "1.7.2", |
|
"snake-case": "3.0.4", |
|
"ufo": "0.8.4", |
|
"v-tooltip": "4.0.0-beta.17", |
|
"vue": "3.2.37", |
|
"vue-advanced-cropper": "2.8.3", |
|
"vue-drag-resize": "2.0.3", |
|
"vue-flatpickr-component": "9.0.6", |
|
"vue-i18n": "9.2.0-beta.36", |
|
"vue-router": "4.0.16", |
|
"vuex": "4.0.2", |
|
"workbox-precaching": "6.5.3", |
|
"zhyswan-vuedraggable": "4.1.3" |
|
}, |
|
"devDependencies": { |
|
"@4tw/cypress-drag-drop": "2.2.1", |
|
"@faker-js/faker": "7.3.0", |
|
"@fortawesome/fontawesome-svg-core": "6.1.1", |
|
"@fortawesome/free-regular-svg-icons": "6.1.1", |
|
"@fortawesome/free-solid-svg-icons": "6.1.1", |
|
"@fortawesome/vue-fontawesome": "3.0.1", |
|
"@types/flexsearch": "0.7.3", |
|
"@typescript-eslint/eslint-plugin": "5.30.4", |
|
"@typescript-eslint/parser": "5.30.4", |
|
"@vitejs/plugin-legacy": "1.8.2", |
|
"@vitejs/plugin-vue": "2.3.3", |
|
"@vue/eslint-config-typescript": "11.0.0", |
|
"autoprefixer": "10.4.7", |
|
"axios": "0.27.2", |
|
"browserslist": "4.20.4", |
|
"caniuse-lite": "1.0.30001357", |
|
"cypress": "10.3.0", |
|
"esbuild": "0.14.48", |
|
"eslint": "8.19.0", |
|
"eslint-plugin-vue": "9.1.1", |
|
"express": "4.18.1", |
|
"happy-dom": "6.0.0", |
|
"netlify-cli": "10.3.1", |
|
"postcss": "8.4.14", |
|
"postcss-preset-env": "7.7.2", |
|
"rollup": "2.75.7", |
|
"rollup-plugin-visualizer": "5.6.0", |
|
"sass": "1.53.0", |
|
"typescript": "4.7.4", |
|
"vite": "2.9.13", |
|
"vite-plugin-pwa": "0.12.2", |
|
"vite-svg-loader": "3.4.0", |
|
"vitest": "0.17.0", |
|
"vue-tsc": "0.38.2", |
|
"wait-on": "6.0.1", |
|
"workbox-cli": "6.5.3" |
|
}, |
|
"eslintConfig": { |
|
"root": true, |
|
"env": { |
|
"browser": true, |
|
"es2021": true, |
|
"node": true, |
|
"vue/setup-compiler-macros": true |
|
}, |
|
"extends": [ |
|
"eslint:recommended", |
|
"plugin:vue/vue3-essential", |
|
"@vue/typescript" |
|
], |
|
"rules": { |
|
"vue/html-quotes": [ |
|
"error", |
|
"double" |
|
], |
|
"quotes": [ |
|
"error", |
|
"single" |
|
], |
|
"comma-dangle": [ |
|
"error", |
|
"always-multiline" |
|
], |
|
"semi": [ |
|
"error", |
|
"never" |
|
], |
|
"vue/script-setup-uses-vars": "error", |
|
"vue/multi-word-component-names": 0 |
|
}, |
|
"parser": "vue-eslint-parser", |
|
"parserOptions": { |
|
"parser": "@typescript-eslint/parser", |
|
"ecmaVersion": 2022 |
|
}, |
|
"ignorePatterns": [ |
|
"*.test.*", |
|
"cypress/*" |
|
], |
|
"globals": { |
|
"defineProps": "readonly" |
|
} |
|
}, |
|
"postcss": { |
|
"plugins": { |
|
"autoprefixer": {} |
|
} |
|
}, |
|
"license": "AGPL-3.0-or-later", |
|
"packageManager": "yarn@1.22.19" |
|
}
|
|
|