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: b08f51cb04a3eaaf013830724d3ef57b442e4bd7 (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
{
	"name": "polls",
	"description": "Polls app for nextcloud",
	"version": "4.0.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": "webpack --node-env development",
		"watch": "webpack --node-env development --progress --watch",
		"build": "webpack --node-env production --progress",
		"lint": "eslint --ext .js,.vue src",
		"lint:fix": "eslint --ext .js,.vue src --fix",
		"stylelint": "stylelint src/**/*{.scss,.vue,.css}",
		"stylelint:fix": "stylelint src --fix"
	},
	"dependencies": {
		"@nextcloud/auth": "^2.0.0",
		"@nextcloud/axios": "^2.1.0",
		"@nextcloud/dialogs": "^3.2.0",
		"@nextcloud/event-bus": "^3.0.2",
		"@nextcloud/initial-state": "^2.0.0",
		"@nextcloud/l10n": "^1.6.0",
		"@nextcloud/moment": "^1.2.1",
		"@nextcloud/router": "^2.0.0",
		"@nextcloud/vue": "^7.0.1",
		"@nextcloud/vue-richtext": "^2.0.4",
		"core-js": "^3.26.0",
		"dompurify": "^2.4.1",
		"file-saver": "^2.0.5",
		"linkify-string": "^4.0.2",
		"lodash": "^4.17.21",
		"marked": "^4.2.2",
		"nextcloud-vue-collections": "^0.10.0",
		"v-click-outside": "^3.2.0",
		"vue": "^2.7.14",
		"vue-material-design-icons": "^5.1.2",
		"vue-router": "^3.6.5",
		"vuedraggable": "^2.24.3",
		"vuex": "^3.6.2",
		"vuex-router-sync": "^5.0.0",
		"xlsx": "^0.18.5"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	],
	"engines": {
		"node": "^16.0.0",
		"npm": "^7.0.0 || ^8.0.0"
	},
	"devDependencies": {
		"@nextcloud/babel-config": "^1.0.0",
		"@nextcloud/browserslist-config": "^2.3.0",
		"@nextcloud/eslint-config": "^8.1.3",
		"@nextcloud/stylelint-config": "^2.3.0",
		"@nextcloud/webpack-vue-config": "^5.4.0",
		"eslint-config-prettier": "^8.5.0",
		"eslint-plugin-prettier": "^4.2.1",
		"prettier": "^2.7.1",
		"vue-template-compiler": "^2.7.14"
	}
}