97 строки
2.6 KiB
JSON
97 строки
2.6 KiB
JSON
{
|
|
"name": "polls",
|
|
"description": "Polls app for nextcloud",
|
|
"version": "1.6.0",
|
|
"authors": [
|
|
{
|
|
"name": "Vinzenz Rosenkranz",
|
|
"email": "vinzenz.rosenkranz@gmail.com",
|
|
"role": "Developer"
|
|
},
|
|
{
|
|
"name": "Rene Gieling",
|
|
"email": "github@dartcafe.de",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nextcloud/polls.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nextcloud/polls/issues"
|
|
},
|
|
"homepage": "https://github.com/nextcloud/polls#readme",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"main": "src/js/main.js",
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js",
|
|
"watch": "cross-env NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
|
"build": "cross-env NODE_ENV=production webpack --progress --config webpack.prod.js",
|
|
"lint": "eslint --ext .js,.vue src",
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
|
"stylelint": "stylelint src",
|
|
"stylelint:fix": "stylelint src --fix"
|
|
},
|
|
"dependencies": {
|
|
"@nextcloud/auth": "^1.3.0",
|
|
"@nextcloud/axios": "^1.5.0",
|
|
"@nextcloud/dialogs": "^3.0.0",
|
|
"@nextcloud/event-bus": "^1.1.4",
|
|
"@nextcloud/moment": "^1.1.1",
|
|
"@nextcloud/router": "^1.2.0",
|
|
"@nextcloud/vue": "^3.1.1",
|
|
"core-js": "^3.6.5",
|
|
"linkify-urls": "^2.2.0",
|
|
"lodash": "^4.17.20",
|
|
"v-click-outside": "^3.1.2",
|
|
"vue": "^2.6.12",
|
|
"vue-clipboard2": "^0.3.1",
|
|
"vue-fragment": "^1.5.1",
|
|
"vue-router": "^3.4.8",
|
|
"vuedraggable": "^2.24.3",
|
|
"vuex": "^3.5.1"
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not ie <= 11"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.3",
|
|
"@babel/preset-env": "^7.12.1",
|
|
"@nextcloud/eslint-plugin": "^1.5.0",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-loader": "^8.0.6",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"cross-env": "^7.0.0",
|
|
"css-loader": "^5.0.0",
|
|
"eslint": "^7.12.1",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-loader": "^4.0.2",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.2",
|
|
"eslint-plugin-vue": "^7.1.0",
|
|
"file-loader": "^6.2.0",
|
|
"node-sass": "^4.14.1",
|
|
"sass-loader": "^10.0.4",
|
|
"stylelint": "^13.7.2",
|
|
"stylelint-config-recommended-scss": "^4.2.0",
|
|
"stylelint-scss": "^3.18.0",
|
|
"terser-webpack-plugin": "^4.2.3",
|
|
"url-loader": "^4.1.1",
|
|
"vue-loader": "^15.9.4",
|
|
"vue-style-loader": "^4.1.2",
|
|
"vue-template-compiler": "^2.6.12",
|
|
"webpack": "^5.3.2",
|
|
"webpack-cli": "^4.1.0",
|
|
"webpack-merge": "^5.2.0"
|
|
}
|
|
}
|