jellyfin-vue/package.json

147 lines
4.6 KiB
JSON
Raw Normal View History

2020-09-02 18:34:50 +00:00
{
"name": "jellyfin-vue",
"author": "Jellyfin Team",
2020-09-02 18:34:50 +00:00
"version": "0.0.0",
"private": true,
"fork-ts-checker": {
"typescript": {
2021-05-28 09:52:48 +00:00
"memoryLimit": 4096
}
},
2020-09-02 18:34:50 +00:00
"scripts": {
"analyze": "NUXT_SSR=1 nuxt build --analyze client",
"analyze:static": "nuxt build --analyze client",
"dev": "NUXT_SSR=1 nuxt client",
"dev:static": "nuxt client",
"build": "NUXT_SSR=1 nuxt build client",
"build:standalone": "NUXT_SSR=1 nuxt build --standalone client",
"build:static": "nuxt build client",
"prod": "npm run build client && npm run start client",
"prod:static": "npm run build:static client && npm run start:static client",
"start": "NUXT_SSR=1 nuxt start client",
"start:static": "nuxt start client",
"generate": "nuxt generate client",
"lint:js": "eslint --ext .ts,.js,.json,.vue .",
2020-09-02 18:34:50 +00:00
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
2021-03-01 17:53:51 +00:00
"lint": "npm run lint:js && npm run lint:style",
2021-02-09 00:40:14 +00:00
"test": "jest",
"prepare": "husky install"
2020-09-02 18:34:50 +00:00
},
"lint-staged": {
"*.{ts,js,vue}": "eslint",
2020-09-02 18:34:50 +00:00
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@fontsource/noto-sans": "^4.5.0",
"@fontsource/noto-sans-hk": "^4.5.0",
"@fontsource/noto-sans-jp": "^4.5.0",
"@fontsource/noto-sans-kr": "^4.5.0",
"@fontsource/noto-sans-sc": "^4.5.0",
"@fontsource/noto-sans-tc": "^4.5.0",
"@jellyfin/client-axios": "10.7.0",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/pwa": "^3.3.5",
2020-10-02 15:19:22 +00:00
"blurhash": "^1.1.3",
"body-scroll-lock": "^3.1.5",
"camel-case": "^4.1.2",
"compare-versions": "^3.6.0",
"cookie": "^0.4.1",
"date-fns": "^2.22.1",
"destr": "^1.1.0",
"dompurify": "^2.3.0",
"entities": "^2.2.0",
"he": "^1.2.0",
"js-cookie": "^2.2.1",
2020-10-22 17:17:15 +00:00
"langs": "^2.0.0",
"lodash": "^4.17.21",
"mux.js": "^5.12.0",
"nuxt": "^2.15.7",
"nuxt-i18n": "^6.27.2",
"nuxt-vuex-localstorage": "^1.3.0",
"qs": "^6.10.1",
"shaka-player": "^3.1.1",
"simple-icons": "^5.5.0",
"swiper": "5.x",
"uuid": "^8.3.2",
"vee-validate": "^3.4.10",
"vue-awesome-swiper": "^4.1.1",
"vue-fullscreen": "^2.5.1",
"vue-native-websocket": "^2.0.14",
2021-01-19 17:57:30 +00:00
"vue-virtual-scroller": "^1.0.10",
"vuedraggable": "^2.24.3",
"vuex-persistedstate": "^4.0.0-beta.3"
2020-09-02 18:34:50 +00:00
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@mdi/font": "^5.9.55",
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/date-fns": "^1.5.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/imagemin": "^1.0.1",
2020-09-02 18:34:50 +00:00
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/vuetify": "^1.12.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/vue": "^5.8.1",
"@types/body-scroll-lock": "^2.6.1",
"@types/cookie": "^0.4.1",
"@types/dompurify": "^2.2.3",
"@types/he": "^1.1.2",
"@types/jest": "^26.0.24",
"@types/js-cookie": "^2.2.7",
"@types/lodash": "^4.14.171",
"@types/nuxtjs__auth": "^4.8.7",
"@types/qs": "^6.9.6",
"@types/simple-icons": "^5.0.1",
"@types/swiper": "^5.4.3",
"@types/uuid": "^8.3.1",
"@types/wicg-mediasession": "^1.1.2",
"@vue/test-utils": "^1.2.1",
"axe": "^8.0.0",
"axe-core": "^4.2.3",
2020-09-02 18:34:50 +00:00
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"comlink-loader": "^2.0.0",
"confusing-browser-globals": "^1.0.10",
"core-js": "^3.15.2",
2020-09-02 18:34:50 +00:00
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-nuxt": "^1.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-jsdoc": "^35.4.1",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-lodash": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.13.0",
"husky": "^7.0.1",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
2020-09-02 18:34:50 +00:00
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^26.5.6",
"vue-axe": "^2.4.4",
"vue-jest": "^3.0.7"
2020-09-02 18:34:50 +00:00
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
2021-03-01 17:53:51 +00:00
},
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
2020-09-02 18:34:50 +00:00
}
}