2018-05-10 20:14:04 +03:00
|
|
|
{
|
2018-12-31 23:12:46 +03:00
|
|
|
"name": "polls",
|
|
|
|
"description": "Polls app for nextcloud",
|
2021-04-27 23:09:00 +03:00
|
|
|
"version": "1.9.0",
|
2018-12-31 23:12:46 +03:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Vinzenz Rosenkranz",
|
|
|
|
"email": "vinzenz.rosenkranz@gmail.com",
|
|
|
|
"role": "Developer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Rene Gieling",
|
|
|
|
"email": "github@dartcafe.de",
|
|
|
|
"role": "Developer"
|
|
|
|
}
|
|
|
|
],
|
2019-01-01 23:01:07 +03:00
|
|
|
"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",
|
2018-12-31 23:12:46 +03:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"private": true,
|
2019-01-01 23:01:07 +03:00
|
|
|
"main": "src/js/main.js",
|
2018-12-31 23:12:46 +03:00
|
|
|
"scripts": {
|
2020-01-03 16:03:14 +03:00
|
|
|
"dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js",
|
|
|
|
"watch": "cross-env NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
2020-10-20 09:10:01 +03:00
|
|
|
"build": "cross-env NODE_ENV=production webpack --progress --config webpack.prod.js",
|
2019-01-02 00:00:24 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2020-01-03 16:03:14 +03:00
|
|
|
"stylelint": "stylelint src",
|
|
|
|
"stylelint:fix": "stylelint src --fix"
|
2018-12-31 23:12:46 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-06-14 04:25:10 +03:00
|
|
|
"@nextcloud/auth": "^1.3.0",
|
2021-01-09 05:07:47 +03:00
|
|
|
"@nextcloud/axios": "^1.6.0",
|
2021-04-16 22:54:15 +03:00
|
|
|
"@nextcloud/dialogs": "^3.1.2",
|
2020-05-02 10:00:29 +03:00
|
|
|
"@nextcloud/event-bus": "^1.1.4",
|
2020-10-31 00:21:19 +03:00
|
|
|
"@nextcloud/l10n": "^1.4.1",
|
2020-05-02 12:03:22 +03:00
|
|
|
"@nextcloud/moment": "^1.1.1",
|
2021-04-10 11:01:43 +03:00
|
|
|
"@nextcloud/router": "^2.0.0",
|
2021-04-10 10:43:13 +03:00
|
|
|
"@nextcloud/vue": "^3.9.0",
|
2021-04-24 04:05:48 +03:00
|
|
|
"core-js": "^3.11.0",
|
2021-04-19 10:29:44 +03:00
|
|
|
"dompurify": "^2.2.7",
|
2021-02-27 05:03:59 +03:00
|
|
|
"lodash": "^4.17.21",
|
2021-04-17 04:03:10 +03:00
|
|
|
"marked": "^2.0.3",
|
2020-09-20 11:09:21 +03:00
|
|
|
"v-click-outside": "^3.1.2",
|
2020-08-23 17:21:58 +03:00
|
|
|
"vue": "^2.6.12",
|
2019-09-07 21:28:37 +03:00
|
|
|
"vue-clipboard2": "^0.3.1",
|
2021-02-27 05:02:51 +03:00
|
|
|
"vue-fragment": "^1.5.2",
|
2021-01-31 00:22:01 +03:00
|
|
|
"vue-router": "^3.5.1",
|
2020-10-25 23:25:23 +03:00
|
|
|
"vuedraggable": "^2.24.3",
|
2021-01-30 05:03:38 +03:00
|
|
|
"vuex": "^3.6.2",
|
2021-01-05 12:00:39 +03:00
|
|
|
"vuex-router-sync": "^5.0.0"
|
2018-12-31 23:12:46 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
|
|
|
"not ie <= 11"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-24 04:05:01 +03:00
|
|
|
"@babel/core": "^7.13.16",
|
2021-04-19 10:29:44 +03:00
|
|
|
"@babel/eslint-parser": "^7.13.14",
|
2021-04-10 10:44:26 +03:00
|
|
|
"@babel/preset-env": "^7.13.15",
|
2021-04-22 01:25:08 +03:00
|
|
|
"@babel/types": "^7.13.17",
|
2021-04-20 00:04:55 +03:00
|
|
|
"@nextcloud/eslint-config": "^5.0.0",
|
2020-11-07 05:41:20 +03:00
|
|
|
"@nextcloud/eslint-plugin": "^2.0.0",
|
2020-11-28 05:15:17 +03:00
|
|
|
"babel-loader": "^8.2.2",
|
2020-10-24 13:04:38 +03:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2020-12-05 05:14:52 +03:00
|
|
|
"cross-env": "^7.0.3",
|
2021-04-24 04:05:25 +03:00
|
|
|
"css-loader": "^5.2.4",
|
2021-04-24 13:41:33 +03:00
|
|
|
"eslint": "^7.25.0",
|
2020-11-22 20:18:02 +03:00
|
|
|
"eslint-config-standard": "^16.0.2",
|
2020-10-03 20:24:39 +03:00
|
|
|
"eslint-plugin-import": "^2.22.1",
|
2019-12-29 05:26:37 +03:00
|
|
|
"eslint-plugin-node": "^11.0.0",
|
2021-02-13 17:16:39 +03:00
|
|
|
"eslint-plugin-promise": "^4.3.1",
|
2021-04-17 04:02:46 +03:00
|
|
|
"eslint-plugin-vue": "^7.9.0",
|
2021-04-24 04:03:28 +03:00
|
|
|
"eslint-webpack-plugin": "^2.5.4",
|
2020-10-30 21:28:40 +03:00
|
|
|
"file-loader": "^6.2.0",
|
2020-11-22 20:17:55 +03:00
|
|
|
"node-sass": "^5.0.0",
|
2021-02-13 05:03:14 +03:00
|
|
|
"sass-loader": "^11.0.1",
|
2021-03-13 05:13:32 +03:00
|
|
|
"stylelint": "^13.12.0",
|
2020-01-28 22:33:14 +03:00
|
|
|
"stylelint-config-recommended-scss": "^4.2.0",
|
2021-02-13 15:50:43 +03:00
|
|
|
"stylelint-scss": "^3.19.0",
|
2021-01-16 10:59:34 +03:00
|
|
|
"terser-webpack-plugin": "^5.1.1",
|
2020-10-11 17:18:20 +03:00
|
|
|
"url-loader": "^4.1.1",
|
2020-12-19 05:17:34 +03:00
|
|
|
"vue-loader": "^15.9.6",
|
2021-03-06 06:33:54 +03:00
|
|
|
"vue-style-loader": "^4.1.3",
|
2020-08-23 17:21:58 +03:00
|
|
|
"vue-template-compiler": "^2.6.12",
|
2021-04-24 12:42:25 +03:00
|
|
|
"webpack": "^5.35.1",
|
2021-04-03 04:02:56 +03:00
|
|
|
"webpack-cli": "^4.6.0",
|
2020-12-26 05:03:19 +03:00
|
|
|
"webpack-merge": "^5.7.3"
|
2018-12-31 23:12:46 +03:00
|
|
|
}
|
2018-05-10 20:14:04 +03:00
|
|
|
}
|