Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2336f7cf0f53a06bd475a12043043fa75c8bbb39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
	"name": "polls",
	"description": "Polls app for nextcloud",
	"version": "3.0.0-rc.3",
	"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.js",
		"watch": "cross-env NODE_ENV=development webpack --progress --watch --config webpack.js",
		"build": "cross-env NODE_ENV=production webpack --progress --config webpack.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.6.0",
		"@nextcloud/dialogs": "^3.1.2",
		"@nextcloud/event-bus": "^2.0.0",
		"@nextcloud/l10n": "^1.4.1",
		"@nextcloud/moment": "^1.1.1",
		"@nextcloud/router": "^2.0.0",
		"@nextcloud/vue": "^4.0.3",
		"core-js": "^3.15.2",
		"dompurify": "^2.3.0",
		"lodash": "^4.17.21",
		"marked": "^2.1.3",
		"v-click-outside": "^3.1.2",
		"vue": "^2.6.14",
		"vue-clipboard2": "^0.3.1",
		"vue-fragment": "^1.5.2",
		"vue-router": "^3.5.2",
		"vuedraggable": "^2.24.3",
		"vuex": "^3.6.2",
		"vuex-router-sync": "^5.0.0"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	],
	"engines": {
		"node": ">=12.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.14.6",
		"@babel/eslint-parser": "^7.14.7",
		"@babel/preset-env": "^7.14.7",
		"@babel/types": "^7.14.5",
		"@nextcloud/browserslist-config": "^2.1.0",
		"@nextcloud/eslint-config": "^5.0.0",
		"@nextcloud/eslint-plugin": "^2.0.0",
		"babel-loader": "^8.2.2",
		"clean-webpack-plugin": "^3.0.0",
		"cross-env": "^7.0.3",
		"css-loader": "^5.2.6",
		"eslint": "^7.30.0",
		"eslint-config-standard": "^16.0.3",
		"eslint-plugin-import": "^2.23.4",
		"eslint-plugin-node": "^11.0.0",
		"eslint-plugin-promise": "^4.3.1",
		"eslint-plugin-vue": "^7.13.0",
		"eslint-webpack-plugin": "^2.5.4",
		"file-loader": "^6.2.0",
		"node-sass": "^6.0.1",
		"sass-loader": "^12.1.0",
		"stylelint": "^13.13.1",
		"stylelint-config-recommended-scss": "^4.3.0",
		"stylelint-scss": "^3.19.0",
		"terser-webpack-plugin": "^5.1.4",
		"url-loader": "^4.1.1",
		"vue-loader": "^15.9.7",
		"vue-style-loader": "^4.1.3",
		"vue-template-compiler": "^2.6.14",
		"webpack": "^5.44.0",
		"webpack-cli": "^4.7.2",
		"webpack-merge": "^5.8.0"
	}
}