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

package.json - github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e772347f333b3f88762be29164893d91b737dae7 (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
{
	"name": "notifications",
	"description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
	"version": "2.8.0",
	"author": "Joas Schilling <coding@schilljs.com>",
	"license": "agpl",
	"private": true,
	"scripts": {
		"dev": "NODE_ENV=development webpack --config src/webpack.dev.js",
		"watch": "NODE_ENV=development webpack --progress --watch --config src/webpack.dev.js",
		"build": "NODE_ENV=production webpack --progress --hide-modules --config src/webpack.prod.js",
		"lint": "eslint --ext .js,.vue src",
		"lint:fix": "eslint --ext .js,.vue src --fix"
	},
	"dependencies": {
		"@nextcloud/axios": "^1.3.3",
		"@nextcloud/event-bus": "^1.2.0",
		"@nextcloud/router": "^1.1.0",
		"core-js": "^3.6.5",
		"escape-html": "^1.0.3",
		"regenerator-runtime": "^0.13.7",
		"vue": "^2.6.12"
	},
	"devDependencies": {
		"@babel/core": "^7.11.4",
		"@babel/preset-env": "^7.11.0",
		"@nextcloud/browserslist-config": "^1.0.0",
		"@nextcloud/eslint-config": "^2.0.0",
		"@nextcloud/eslint-plugin": "^1.4.0",
		"babel-eslint": "^10.1.0",
		"babel-loader": "^8.1.0",
		"babel-loader-exclude-node-modules-except": "^1.0.3",
		"css-loader": "^4.2.1",
		"eslint": "^6.8.0",
		"eslint-config-standard": "^14.1.1",
		"eslint-import-resolver-webpack": "^0.12.2",
		"eslint-loader": "^3.0.4",
		"eslint-plugin-import": "^2.22.0",
		"eslint-plugin-node": "^11.1.0",
		"eslint-plugin-promise": "^4.2.1",
		"eslint-plugin-standard": "^4.0.1",
		"eslint-plugin-vue": "^6.2.2",
		"file-loader": "^6.0.0",
		"handlebars": "^4.7.6",
		"handlebars-loader": "^1.7.1",
		"node-sass": "^4.14.1",
		"sass-loader": "^10.0.1",
		"vue-loader": "^15.9.3",
		"vue-template-compiler": "^2.6.12",
		"webpack": "^4.44.1",
		"webpack-cli": "^3.3.12",
		"webpack-merge": "^5.1.2"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	]
}