-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.01 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.01 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
{
"name": "mushee",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:test": "ng serve --configuration test",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"build:test": "ng build --configuration test",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --code-coverage --browsers=ChromeHeadless",
"test:coverage": "ng test --coverage --watch=false",
"e2e:test": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug",
"e2e:codegen": "playwright codegen http://localhost:4200",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"lint:e2e": "eslint e2e/**/*.ts",
"lint:e2e:fix": "eslint e2e/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,html,scss,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,css,json}\"",
"prepare": "husky",
"seed:scores": "tsx scripts/seed-scores.ts",
"setup:env": "tsx scripts/setup-env.ts"
},
"private": true,
"dependencies": {
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.0",
"@angular/compiler": "^19.2.0",
"@angular/core": "^19.2.0",
"@angular/forms": "^19.2.0",
"@angular/material": "^19.2.19",
"@angular/platform-browser": "^19.2.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/router": "^19.2.0",
"@supabase/supabase-js": "^2.76.1",
"@types/crypto-js": "^4.2.2",
"crypto-js": "^4.2.0",
"dotenv": "^17.2.3",
"jszip": "^3.10.1",
"opensheetmusicdisplay": "^1.9.3",
"osmd-audio-player": "git+https://github.com/Seg0r/osmd-audio-player.git#fix/tempo-increased-by-tuplets-and-subdivisions",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"xml2js": "^0.6.2",
"yauzl": "^3.2.0",
"zone.js": "~0.15.0"
},
"overrides": {
"osmd-audio-player": {
"opensheetmusicdisplay": "^1.9.3",
"jszip": "^3.10.1"
}
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.18",
"@angular/cli": "^19.2.18",
"@angular/compiler-cli": "^19.2.0",
"@playwright/test": "^1.48.2",
"@types/jasmine": "~5.1.0",
"@types/node": "^24.9.1",
"@types/xml2js": "^0.4.14",
"@types/yauzl": "^2.10.3",
"angular-eslint": "20.4.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.3.0",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jasmine-core": "~5.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"supabase": "^2.58.5",
"tsx": "^4.7.0",
"typescript": "~5.7.2",
"typescript-eslint": "8.46.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.html": [
"eslint --fix",
"prettier --write"
],
"*.{scss,css,json}": [
"prettier --write"
]
}
}