-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.8 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
{
"private": true,
"homepage": "https://samba-chemnitz.de",
"description": "Score management and arrangement app for our **Banda Animada de Samba** group",
"repository": {
"type": "git",
"url": "https://github.com/mike-lischke/animada-score-book.git"
},
"license": "MIT",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "vite --host",
"build": "npm run fix-svgs && npm run generate-themes && vite build",
"check": "tsc --noEmit && tsc -p tests/tsconfig.json --noEmit",
"lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}' 'build/**/*.{ts,mjs}'",
"watch": "npm run watch:src & wait",
"watch:src": "tsc --noEmit --watch",
"test": "vitest --no-watch",
"test:e2e": "NODE_NO_WARNINGS=1 playwright test",
"test:e2e:headed": "NODE_NO_WARNINGS=1 playwright test --headed",
"test:e2e:ui": "NODE_NO_WARNINGS=1 playwright test --ui",
"serve:e2e": "tsx build/serve-dist.ts",
"playwright:install": "playwright install chromium",
"generate-themes": "tsx build/generate-daisyui-themes.ts",
"fix-svgs": "tsx build/fix-svg-attributes.ts",
"start": "tsx src/server/backend.ts",
"start-debug": "JWT_SECRET=\"for-debugging\" tsx src/server/backend.ts",
"db:cleanup": "tsx build/db-cleanup.ts",
"db:migrate": "tsx build/migration.ts"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@mediabunny/mp3-encoder": "1.39.1",
"classnames": "2.5.1",
"daisyui": "5.5.19",
"jsonwebtoken": "9.0.3",
"mediabunny": "1.39.1",
"mime-types": "3.0.2",
"mysql2": "3.16.0",
"pg": "8.16.3",
"preact": "10.29.0",
"tabulator-tables": "6.4.0",
"tailwindcss": "4.2.1",
"wavesurfer.js": "7.12.2"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "1.59.1",
"@preact/preset-vite": "2.10.3",
"@stylistic/eslint-plugin": "5.10.0",
"@tailwindcss/vite": "4.2.1",
"@testing-library/preact": "3.2.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime-types": "3.0.1",
"@types/node": "25.5.0",
"@types/pg": "8.16.0",
"@types/tabulator-tables": "6.3.1",
"@typescript-eslint/parser": "8.57.0",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.8.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"globals": "17.4.0",
"jsdom": "27.4.0",
"node-html-parser": "7.1.0",
"sass-embedded": "1.98.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"eslintConfig": {
"extends": "preact"
}
}