synclounge/package.json

82 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2017-04-07 05:09:03 +00:00
{
"name": "synclounge",
"version": "0.0.0-semantically-released",
2020-06-23 01:23:58 +00:00
"description": "Synced playback of Plex content",
"author": "samcm",
"bin": "./server.js",
"files": [
"dist",
"config",
"server.js"
],
2017-04-07 05:09:03 +00:00
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
2020-08-06 20:27:40 +00:00
"lint": "vue-cli-service lint",
"lint:style": "vue-cli-service lint:style",
"prepare": "if-env SKIP_BUILD=true && echo 'Skipping build' || npm run build"
2017-04-07 05:09:03 +00:00
},
"dependencies": {
"nconf": "^0.12.1",
"syncloungeserver": "^8.0.88"
2017-06-11 19:06:34 +00:00
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@delucis/if-env": "^1.1.2",
2023-09-25 21:05:13 +00:00
"@samhammer/vue-cli-plugin-stylelint": "^5.0.8",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^7.0.1",
"caf": "^15.0.1",
"core-js": "^3.39.0",
"date-fns": "^2.30.0",
"detect-browser": "^5.3.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.31.0",
"fast-xml-parser": "^4.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mux.js": "^6.3.0",
"postcss-html": "^1.7.0",
2023-09-25 22:24:39 +00:00
"postcss-sass": "^0.5.0",
"sass": "^1.81.0",
"sass-loader": "^14.2.1",
"shaka-player": "^4.12.2",
"socket.io-client": "^4.8.1",
"string-similarity": "^4.0.4",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"synclounge-libjass": "^1.0.0",
"vanilla-tilt": "^1.8.1",
"vue": "^2.7.14",
"vue-chat-scroll": "^1.4.0",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.7.16",
"vuetify": "^2.7.1",
"vuetify-loader": "^1.9.2",
"vuex": "^3.6.2",
"vuex-persistedstate": "^4.1.0"
2020-06-23 01:23:58 +00:00
},
"bugs": {
2020-10-08 23:53:16 +00:00
"url": "https://github.com/synclounge/synclounge/issues"
2020-06-23 01:23:58 +00:00
},
2020-10-08 23:53:16 +00:00
"homepage": "https://synclounge.tv",
2020-06-23 01:23:58 +00:00
"license": "MIT",
"repository": {
"type": "git",
2020-10-08 23:53:16 +00:00
"url": "https://github.com/synclounge/synclounge.git"
},
"engines": {
"node": ">=12"
}
}