-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 5.84 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 5.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "gblaster",
"version": "2026.5.1",
"author": "motabass",
"repository": "https://github.com/motabass/gblaster",
"description": "Colorful Web Audio Player PWA",
"license": "CC0-1.0",
"packageManager": "pnpm@11.0.8",
"engines": {
"node": "^25",
"pnpm": "^11"
},
"scripts": {
"ng": "nx",
"nx": "nx",
"start": "pnpm run serve:gblaster",
"serve:gblaster": "nx serve gblaster",
"build": "nx build gblaster",
"build:prod": "nx build --prod",
"build:prod:gblaster": "nx build gblaster --prod",
"build:file-drop-overlay": "nx build ui-components-file-drop-overlay --prod",
"publish:file-drop-overlay": "pnpm run build:file-drop-overlay && cd dist/libs/ui-components/file-drop-overlay/ && npm publish --access public",
"test": "nx test",
"deploy": "nx deploy",
"lint": "nx run-many -t lint -all -- --fix",
"e2e": "nx e2e gblaster",
"e2e:ui": "nx e2e gblaster --ui",
"affected:build": "nx affected -t build",
"affected:e2e": "nx affected -t e2e",
"test:all": "nx run-many -t test",
"affected:test": "nx affected -t test",
"affected:lint": "nx affected -t lint",
"affected:dep-graph": "nx affected graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"prettier": "prettier --config ./.prettierrc --write \"{apps,libs,tools,.github}/**/*.{scss,html,ts,js,json,md,yml,yaml,css}\"",
"update:all:safe": "ncu -ui --format group --peer",
"update:all": "pnpm update --latest --interactive",
"update:all:ncu": "pnpm dlx npm-check-updates -ui --format group",
"update:angular-cli": "nx migrate @angular/cli",
"update:angular": "nx migrate @angular/core",
"update:angular-material": "nx migrate @angular/material --from @angular/material@20.0.0",
"update:nx": "nx migrate latest",
"migrate": "nx migrate --run-migrations=migrations.json",
"dep-graph": "nx dep-graph",
"help": "nx help",
"release": "pnpm exec release-it --ci",
"generate-changelog": "auto-changelog -p",
"ci:build": "pnpm run build:prod:gblaster",
"ci:e2e": "nx run gblaster:e2e",
"ci:deploy": "nx deploy gblaster",
"lint:interactive": "nx run-many -t lint-interactive --all",
"dep-graph:html": "nx graph --file docs/dep-graph.html",
"compodoc": "nx run workspace:compodoc",
"generate:icon-set": "ts-node --project tools/tsconfig.tools.json tools/convertIcons.ts",
"build:stats:gblaster": "pnpm run build:prod -- --stats-json --named-chunks",
"analyze:treemap:gblaster": "esbuild-visualizer --template treemap --metadata ./dist/apps/gblaster/stats.json --filename docs/analyzer-report-treemap.html",
"analyze:sunburst:gblaster": "esbuild-visualizer --template sunburst --metadata ./dist/apps/gblaster/stats.json --filename docs/analyzer-report-sunburst.html",
"analyze:network:gblaster": "esbuild-visualizer --template network --metadata ./dist/apps/gblaster/stats.json --filename docs/analyzer-report-network.html",
"prepare": "husky"
},
"dependencies": {
"@angular/cdk": "21.2.11",
"@angular/common": "21.2.13",
"@angular/compiler": "21.2.13",
"@angular/core": "21.2.13",
"@angular/forms": "21.2.13",
"@angular/material": "21.2.11",
"@angular/platform-browser": "21.2.13",
"@angular/platform-browser-dynamic": "21.2.13",
"@angular/router": "21.2.13",
"@angular/service-worker": "21.2.13",
"@noble/hashes": "2.2.0",
"colord": "2.9.3",
"date-fns": "4.1.0",
"fuse.js": "7.3.0",
"music-metadata": "11.12.3",
"musicbrainz-api": "1.2.1",
"ngx-date-fns": "12.0.1",
"ngx-indexed-db": "22.0.0",
"ngx-webstorage": "21.0.1",
"node-vibrant": "4.0.4",
"rxjs": "7.8.2",
"safe-pipe": "3.0.4",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.2.11",
"@angular/build": "21.2.11",
"@angular/cli": "21.2.11",
"@angular/compiler-cli": "21.2.13",
"@angular/language-service": "21.2.13",
"@compodoc/compodoc": "1.2.1",
"@csmith/release-it-calver-plugin": "2026.4.0",
"@eslint/js": "10.0.1",
"@nx/angular": "22.7.2",
"@nx/eslint": "22.7.2",
"@nx/eslint-plugin": "22.7.2",
"@nx/js": "22.7.2",
"@nx/node": "22.7.2",
"@nx/playwright": "22.7.2",
"@nx/vite": "22.7.2",
"@nx/vitest": "22.7.2",
"@nx/web": "22.7.2",
"@nx/workspace": "22.7.2",
"@playwright/test": "1.60.0",
"@schematics/angular": "21.2.11",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.33",
"@swc/helpers": "0.5.21",
"@twittwer/compodoc": "1.13.0",
"@types/node": "25.8.0",
"@types/spark-md5": "3.0.5",
"@types/wicg-file-system-access": "2023.10.7",
"@typescript-eslint/parser": "8.59.3",
"@typescript-eslint/utils": "8.59.3",
"@vitest/browser-playwright": "4.1.6",
"@vitest/coverage-v8": "4.1.6",
"@vitest/ui": "4.1.6",
"angular-eslint": "21.4.0",
"auto-changelog": "2.5.1",
"esbuild-visualizer": "0.7.0",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-filtered-fix": "0.3.0",
"eslint-interactive": "14.0.0",
"eslint-nibble": "9.1.1",
"eslint-plugin-sonarjs": "4.0.3",
"eslint-plugin-unicorn": "64.0.0",
"firebase-tools": "15.18.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "17.0.5",
"ng-packagr": "21.2.3",
"nx": "22.7.2",
"nx-stylelint": "19.0.0",
"postcss-html": "1.8.1",
"prettier": "3.8.3",
"release-it": "20.0.1",
"stylelint": "17.11.1",
"stylelint-config-html": "1.1.0",
"stylelint-config-recommended": "18.0.0",
"stylelint-config-recommended-scss": "17.0.1",
"stylelint-config-standard": "40.0.0",
"stylelint-config-standard-scss": "17.0.0",
"svgo": "4.0.1",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.59.3",
"vitest": "4.1.6"
}
}