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: a7a3cfca4ecab465a39db3b66a9be752993018d9 (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
{
	"name": "polls",
	"description": "Polls app for nextcloud",
	"version": "1.5.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 --hide-modules --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.3.3",
		"@nextcloud/dialogs": "^1.4.0",
		"@nextcloud/event-bus": "^1.1.4",
		"@nextcloud/moment": "^1.1.1",
		"@nextcloud/router": "^1.1.0",
		"@nextcloud/vue": "^2.3.0",
		"core-js": "^3.6.5",
		"lodash": "^4.17.19",
		"moment": "^2.27.0",
		"v-click-outside": "^3.0.0",
		"vue": "^2.6.11",
		"vue-clipboard2": "^0.3.1",
		"vue-fragment": "^1.5.1",
		"vue-router": "^3.4.3",
		"vuedraggable": "^2.24.0",
		"vuex": "^3.5.1"
	},
	"browserslist": [
		"> 1%",
		"last 2 versions",
		"not ie <= 11"
	],
	"engines": {
		"node": ">=10.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.11.1",
		"@babel/preset-env": "^7.11.0",
		"@nextcloud/eslint-plugin": "^1.4.0",
		"babel-eslint": "^10.0.3",
		"babel-loader": "^8.0.6",
		"cross-env": "^7.0.0",
		"css-loader": "^3.6.0",
		"eslint": "^7.6.0",
		"eslint-config-standard": "^14.1.0",
		"eslint-loader": "^4.0.2",
		"eslint-plugin-import": "^2.22.0",
		"eslint-plugin-node": "^11.0.0",
		"eslint-plugin-promise": "^4.2.1",
		"eslint-plugin-standard": "^4.0.1",
		"eslint-plugin-vue": "^6.2.2",
		"file-loader": "^6.0.0",
		"node-sass": "^4.14.1",
		"sass-loader": "^9.0.3",
		"stylelint": "^13.6.1",
		"stylelint-config-recommended-scss": "^4.2.0",
		"stylelint-scss": "^3.18.0",
		"terser-webpack-plugin": "^4.1.0",
		"vue-loader": "^15.9.3",
		"vue-style-loader": "^4.1.2",
		"vue-template-compiler": "^2.6.11",
		"webpack": "^4.44.1",
		"webpack-cli": "^3.3.12",
		"webpack-merge": "^5.1.1"
	}
}