-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.31 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.31 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
{
"name": "mah",
"version": "1.18.3",
"author": "ffalt",
"license": "MIT",
"description": "a html5 mahjong solitaire game",
"repository": "https://github.com/ffalt/mah.git",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:development": "ng serve -c development",
"start:development:apps": "ng serve -c development-apps --host 0.0.0.0",
"check": "qlty check --all",
"build": "ng build",
"build:prod": "npm run build:deploy-release",
"build:stats": "ng build --named-chunks --configuration production --aot --stats-json --output-hashing=none",
"build:prebuild": "rimraf dist",
"build:deploy-release": "npm run build:prebuild && ng build --configuration production --aot --base-href \".\"",
"build:apps": "npm run build:prebuild && ng build --configuration apps --aot --base-href \".\"",
"build:deploy-root": "npm run build:prebuild && ng build --configuration production --aot --base-href \"/\"",
"build:deploy-ghpages": "npm run build:prebuild && ng build --configuration production --aot --base-href \"https://ffalt.github.io/mah/\"",
"build:releaselog": "node .github/scripts/extract-release.mjs",
"analyze": "npm run build:stats && npx esbuild-visualizer --metadata ./dist/stats.json --open true",
"release": "npx -y commit-and-tag-version -a",
"update:angular": "ng update @angular/cli @angular/core",
"clean": "rimraf dist",
"test": "jest",
"coverage": "jest --coverage true",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:css": "stylelint \"**/*.css\"",
"lint": "ng lint && eslint .",
"lint:fix": "ng lint --fix"
},
"private": true,
"dependencies": {
"@angular/common": "21.2.7",
"@angular/compiler": "21.2.7",
"@angular/core": "21.2.7",
"@angular/forms": "21.2.7",
"@angular/platform-browser": "21.2.7",
"@angular/platform-browser-dynamic": "21.2.7",
"@angular/platform-server": "21.2.7",
"@ngx-translate/core": "17.0.0",
"@ngx-translate/http-loader": "17.0.0",
"@tauri-apps/plugin-opener": "2.5.3",
"rxjs": "7.8.2",
"zone.js": "0.16.1",
"zzfx": "1.3.2"
},
"overrides": {
"brace-expansion": "5.0.5",
"babel-plugin-istanbul": {
"test-exclude": "7.0.2"
}
},
"devDependencies": {
"@angular/build": "21.2.6",
"@angular/cli": "21.2.6",
"@angular/compiler-cli": "21.2.7",
"@angular/language-service": "21.2.7",
"@eslint/js": "10.0.1",
"@iarna/toml": "2.2.5",
"@mah/builders": "file:tools/builders",
"@stylistic/eslint-plugin": "5.10.0",
"@types/jest": "30.0.0",
"@types/node": "25.5.2",
"angular-eslint": "21.3.1",
"baseline-browser-mapping": "2.10.14",
"eslint": "10.2.0",
"eslint-plugin-jest": "29.15.1",
"eslint-plugin-rxjs-x": "1.0.2",
"eslint-plugin-unicorn": "64.0.0",
"globals": "17.4.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-preset-angular": "16.1.2",
"rimraf": "6.1.3",
"stylelint": "17.6.0",
"stylelint-config-standard-scss": "17.0.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0"
},
"engines": {
"node": ">=22"
},
"contributors": [
{
"name": "Heimen Stoffels",
"url": "https://github.com/Vistaus"
},
{
"name": "Carmen F. B.",
"url": "https://github.com/carmenfdezb"
}
]
}