-
Notifications
You must be signed in to change notification settings - Fork 198
/
package.json
69 lines (69 loc) · 2.13 KB
/
package.json
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
{
"name": "music",
"description": "Music player and server for ownCloud and Nextcloud",
"version": "2.0.1",
"private": true,
"homepage": "https://github.com/owncloud/music",
"repository": {
"type": "git",
"url": "[email protected]:owncloud/music.git"
},
"bugs": "https://github.com/owncloud/music/issues",
"dependencies": {
"@nextcloud/files": "^3.0.0",
"angular": "^1.8.3",
"angular-gettext": "^2.4.2",
"angular-route": "^1.8.3",
"angular-sanitize": "^1.8.3",
"angular-scroll": "^1.0.2",
"blueimp-md5": "^2.19.0",
"chosen-js": "^1.8.7",
"core-js": "^3.31.1",
"hls.js": "^0.14.17",
"javascript-detect-element-resize": "^0.5.3",
"jquery": "^3.7.0",
"lodash": "^4.17.21",
"long-press-event": "^2.4.6",
"restangular": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@types/angular": "^1.8.5",
"@types/angular-gettext": "^2.1.35",
"@types/core-js": "^2.5.5",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.195",
"@types/restangular": "^1.5.46",
"acorn": "^8.10.0",
"angular-gettext-cli": "^1.2.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.6.2",
"path-browserify": "^1.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.1",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.10.0"
},
"engine": "node >= 0.8",
"scripts": {
"build": "webpack",
"build-dev": "webpack --mode=\"development\"",
"watch": "webpack --mode=\"development\" --watch",
"l10n-extract": "angular-gettext-cli --files {./templates/**/*.php,./js/app/**/*.ts,./js/app/**/*.js} --dest ./l10n/templates/music.pot",
"l10n-compile": "angular-gettext-cli --compile --files ./l10n/**/music.po --dest ./js/app/l10n/translations.js --module Music"
}
}