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: 91504f685605a1707b4bd70863427ed00e7f3c8b (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
{
	"name": "notifications",
	"description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
	"version": "2.7.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.2",
		"@nextcloud/moment": "^1.1.1",
		"core-js": "^3.6.5",
		"escape-html": "^1.0.3",
		"regenerator-runtime": "^0.13.5",
		"vue": "^2.6.11"
	},
	"devDependencies": {
		"@babel/core": "^7.9.0",
		"@babel/preset-env": "^7.9.5",
		"@nextcloud/browserslist-config": "^1.0.0",
		"@nextcloud/eslint-config": "^2.0.0",
		"@nextcloud/eslint-plugin": "^1.1.0",
		"babel-eslint": "^10.1.0",
		"babel-loader": "^8.1.0",
		"css-loader": "^3.5.2",
		"eslint": "^6.8.0",
		"eslint-config-standard": "^14.1.1",
		"eslint-import-resolver-webpack": "^0.12.1",
		"eslint-loader": "^3.0.4",
		"eslint-plugin-import": "^2.20.2",
		"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.13.1",
		"sass-loader": "^8.0.2",
		"vue-loader": "^15.9.1",
		"vue-template-compiler": "^2.6.11",
		"webpack": "^4.42.1",
		"webpack-cli": "^3.3.11",
		"webpack-merge": "^4.2.2"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	]
}