-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.9 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
{
"name": "mekbay",
"version": "0.1.0",
"scripts": {
"ng": "ng",
"gen-meta": "node scripts/generate-build-meta.js",
"gen-assets": "node scripts/generate-assets.js",
"gen-force-name-words": "tsx scripts/generate-force-name-words.ts",
"gen-ratgenerator": "tsx scripts/ratgenerator_build_table.ts",
"gen-sprites": "node scripts/generate-sprite-map.js",
"prerun": "npm run gen-meta && npm run gen-assets && npm run gen-sprites",
"start": "ng serve --host 0.0.0.0",
"build": "npm run prerun && ng build --configuration=production",
"build:next": "npm run prerun && ng build --configuration=next",
"test:ratgenerator": "tsx scripts/ratgenerator_build_table.test.ts",
"watch": "ng build --watch --configuration=development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.12",
"@angular/common": "^21.2.14",
"@angular/compiler": "^21.2.14",
"@angular/core": "^21.2.14",
"@angular/forms": "^21.2.14",
"@angular/platform-browser": "^21.2.14",
"@angular/pwa": "^21.1.4",
"@angular/router": "^21.2.14",
"@angular/service-worker": "^21.2.14",
"@zxing/ngx-scanner": "^21.0.0",
"angularx-qrcode": "^21.0.5",
"jszip": "^3.10.1",
"tslib": "^2.8.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@angular/build": "^21.2.12",
"@angular/cli": "^21.2.12",
"@angular/compiler-cli": "^21.2.14",
"@types/jasmine": "^6.0.0",
"@types/js-yaml": "^4.0.9",
"@types/jszip": "^3.4.1",
"@types/node": "^25.5.0",
"fast-xml-parser": "^5.5.9",
"jasmine-core": "^6.0.1",
"js-yaml": "^4.1.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"sharp": "^0.34.5",
"tsx": "^4.20.5",
"typescript": "~5.9.3"
}
}