forked from ampache/ampache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.85 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
{
"name": "ampache",
"version": "1.0.0",
"description": "Packages used by Ampache",
"type": "module",
"private": "true",
"dependencies": {
"@material-symbols/svg-400": "^0.16.0",
"bootstrap": "^5.3.3",
"filepond": "^4.30.6",
"jquery": "3.5.*",
"jquery-contextmenu": "^2.9.2",
"jquery-datetimepicker": "^2.5.21",
"jquery-ui": "1.13.*",
"jquery.qrcode": "^1.0.3",
"js-cookie": "^2.2.1",
"jscroll": "^2.4.1",
"tag-it": "^2.0.0",
"wunderbaum": "0.8.2"
},
"scripts": {
"dev": "vite --port 5177",
"build": "vite build --minify false",
"postinstall": "npm-run-all copy:*",
"copy:bootstrap": "copyfiles --up 3 \"node_modules/bootstrap/dist/**/*\" public/lib/components/bootstrap",
"copy:contextmenu": "copyfiles --up 3 \"node_modules/jquery-contextmenu/dist/*\" public/lib/components/jquery-contextmenu",
"copy:datetimepicker": "copyfiles --up 3 node_modules/jquery-datetimepicker/build/jquery.datetimepicker.full.min.js node_modules/jquery-datetimepicker/build/jquery.datetimepicker.min.css public/lib/components/datetimepicker",
"copy:filepond": "copyfiles --up 3 node_modules/filepond/dist/filepond.min.js node_modules/filepond/dist/filepond.min.css public/lib/components/filepond",
"copy:jscookie": "copyfiles --up 3 node_modules/js-cookie/src/js.cookie.js public/lib/components/js-cookie",
"copy:jscroll": "copyfiles --up 3 \"node_modules/jscroll/dist/**/*\" public/lib/components/jscroll",
"copy:jquery": "copyfiles --up 3 node_modules/jquery/dist/jquery.min.js public/lib/components/jquery",
"copy:jqueryui": "copyfiles --up 3 \"node_modules/jquery-ui/dist/*\" public/lib/components/jquery-ui",
"copy:jqueryqrcode": "copyfiles --up 2 node_modules/jquery.qrcode/jquery.qrcode.min.js public/lib/components/jquery-qrcode",
"copy:materialsymbols": "copyfiles --up 4 \"node_modules/@material-symbols/svg-400/rounded/*\" \"resources/images/material-symbols\"",
"copy:prettyphoto": "copyfiles --up 2 \"node_modules/prettyphoto/images/**/*\" node_modules/prettyphoto/js/jquery.prettyPhoto.min.js node_modules/prettyphoto/css/prettyPhoto.min.css public/lib/components/prettyphoto",
"copy:tagit": "copyfiles --up 2 node_modules/tag-it/js/tag-it.min.js node_modules/tag-it/css/jquery.tagit.css public/lib/components/tag-it",
"copy:wunderbaum": "copyfiles --up 3 \"node_modules/wunderbaum/dist/**/*\" public/lib/components/wunderbaum"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampache/ampache.git"
},
"keywords": [
"ampache",
"music"
],
"author": "ampache",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ampache/ampache/issues"
},
"homepage": "https://github.com/ampache/ampache#readme",
"devDependencies": {
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.17.4",
"vite": "^5.4.12"
}
}