-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 4.23 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
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
{
"name": "replayer",
"version": "2.5.1",
"description": "Replayer is a free, cue-based media player for rehearsals with playback music. By the click of a button, Replayer starts to play at predefined times in the audio or video file.",
"homepage": "https://replayer.app",
"main": "./public/index.html",
"type": "module",
"private": true,
"keywords": [
"mp3, wav, ogg, flac, aiff, aac, player, start, point, time, button, click, link, music, file, voice, choir, singer, solo, song, software, app, free, fast, simple, Spotify, YouTube, Vimeo, SoundCloud, SATB, Soprano, Alto, Tenor, Bass, drum, track, entertainer, dancer"
],
"author": {
"name": "Marcel Suter",
"email": "[email protected]",
"url": "https://marcelsuter.ch"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"css-build": "sass --no-source-map sass/replayer.scss public/css/replayer.css",
"css-watch": "npm run css-build -- --watch",
"start": "npm run css-watch",
"dev": "vite",
"build": "npm run type-check && npm run build-only && npm run doc-build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"doc-build": "npx typedoc"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@simolation/vue-hotkey": "^2.0.1",
"@sindresorhus/slugify": "^2.2.1",
"@vue-youtube/core": "^0.0.6",
"@vueuse/components": "^10.11.1",
"@vueuse/core": "^10.7.2",
"@vueuse/integrations": "^10.11.1",
"chalk": "^5.3.0",
"compare-versions": "^6.1.1",
"file-saver": "^2.0.5",
"focus-trap": "^7.6.1",
"jszip": "^3.10.1",
"konva": "^9.3.16",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"nosleep.js": "^0.12.0",
"pdfobject": "^2.3.0",
"pinia": "^2.2.6",
"sub-events": "^1.10.1",
"tslog": "^4.9.3",
"uuid": "^8.3.2",
"vue": "^3.5.10",
"vue-global-events": "^2.2.0",
"vue-peaks": "^2.0.2",
"vue-router": "^4.4.5",
"vue-scrollto": "^2.20.0",
"vue3-promise-dialog": "^0.3.4",
"vuedraggable": "^4.1.0",
"waveform-data": "^4.5.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@creativebulma/bulma-tooltip": "^1.2.0",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.64",
"@types/uuid": "^9.0.8",
"@types/xml2js": "^0.4.14",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"bulma": "^0.9.4",
"bulma-print": "^1.0.1",
"bulma-slider": "^2.0.5",
"bulmaswatch": "^0.8.1",
"cypress": "^13.15.2",
"eslint": "^8.57.1",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-vue": "^9.31.0",
"jsdom": "^24.1.3",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.81.0",
"sass-loader": "^10.5.2",
"start-server-and-test": "^2.0.8",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.18.0",
"vite": "^5.4.11",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-pwa": "^0.17.5",
"vitest": "^1.6.0",
"vue-tsc": "^1.8.27"
},
"bugs": {
"url": "https://github.com/suterma/replayer-pwa/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/suterma/replayer-pwa.git"
}
}