-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 KB
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": "audinary",
"version": "1.1.1",
"license": "AGPL-3.0",
"author": "Daniel Hiller & contributors",
"homepage": "https://audinary.org",
"description": "Audinary - Hungry for music",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && composer start",
"build": "npm run build:client",
"build:client": "cd client && npm run build",
"install:all": "npm install && cd client && npm install && cd ../server && composer install",
"clean": "rm -rf client/node_modules client/dist server/vendor",
"lint": "cd client && npm run lint",
"test": "npm run test:client && npm run test:server",
"test:client": "cd client && npm run test",
"test:server": "cd server && composer test",
"version:sync": "node scripts/sync-version.js",
"version:bump": "node scripts/version-bump.js",
"version:bump:major": "node scripts/version-bump.js major",
"version:bump:minor": "node scripts/version-bump.js minor",
"version:bump:patch": "node scripts/version-bump.js patch",
"version": "npm run version:sync && git add -A"
},
"devDependencies": {
"concurrently": "^9.1.2",
"eslint": "^10.1.0",
"vite": "^8.0.3",
"vue-tsc": "^3.2.6"
},
"engines": {
"node": ">=18.0.0",
"php": ">=8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/audinary-org/audinary.git"
},
"keywords": [
"music",
"streaming",
"vue",
"php",
"spa"
],
"dependencies": {
"chart.js": "^4.5.1",
"vue-router": "^5.0.4"
}
}