-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.65 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.65 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
{
"name": "angular-grid-examples",
"homepage": "https://github.com/IgniteUI/angular-grid-examples",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve -o",
"start:erp": "ng serve --project=erp-hgrid -o",
"start:fin": "ng serve --project=finance-grid -o",
"start:hr": "ng serve --project=hr-portal -o",
"start:sales": "ng serve --project=sales-grid -o",
"start:fleet": "ng serve --project=fleet-management -o",
"start:column-chart": "ng serve --project=column-chart -o",
"start:bar-chart": "ng serve --project=bar-chart -o",
"start:line-chart": "ng serve --project=line-chart -o",
"start:pie-chart": "ng serve --project=pie-chart -o",
"start:step-chart": "ng serve --project=step-chart -o",
"start:polar-chart": "ng serve --project=polar-chart -o",
"test": "ng test",
"_": "",
"ISS Deploy Scripts": "For use only with deployment on IIS. Make sure `base-href` matches the alias of you app",
"watch": "ng build --watch --configuration development --base-href /angular-grid-examples/",
"build": "ng build ",
"build:ci": "ng build --base-href /angular-grid-examples/",
"build:fleet": "ng build fleet-management --base-href /fleet-management-app/",
"__": "",
"Server Side Scripts": "For use only if you switch to SSR in the angular.json outputMode for the root app and change the `RenderMode` in the server routes OR just build and run the individual grid apps. The Fleet Management grid doesn't have SSR enabled.",
"build:erp": "ng build erp-hgrid",
"build:fin": "ng build finance-grid",
"build:hr": "ng build hr-portal",
"build:sales": "ng build sales-grid",
"build:column-chart": "ng build column-chart",
"build:bar-chart": "ng build bar-chart",
"build:line-chart": "ng build line-chart",
"build:pie-chart": "ng build pie-chart",
"build:step-chart": "ng build step-chart",
"build:polar-chart": "ng build polar-chart",
"ssr:erp": "node dist/erp-hgrid/server/server.mjs",
"ssr:fin": "node dist/finance-grid/server/server.mjs",
"ssr:hr": "node dist/hr-portal/server/server.mjs",
"ssr:sales": "node dist/sales-grid/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.2",
"@angular/common": "^21.0.2",
"@angular/compiler": "^21.0.2",
"@angular/core": "^21.0.2",
"@angular/forms": "^21.0.2",
"@angular/platform-browser": "^21.0.2",
"@angular/platform-browser-dynamic": "^21.0.2",
"@angular/platform-server": "^21.0.2",
"@angular/router": "^21.0.2",
"@angular/ssr": "^21.0.2",
"@igniteui/material-icons-extended": "^3.1.0",
"express": "^5.1.0",
"fflate": "^0.8.1",
"hammerjs": "^2.0.8",
"igniteui-angular": "~21.0.0",
"igniteui-angular-charts": "^20.0.0",
"igniteui-angular-core": "^20.0.0",
"igniteui-angular-maps": "^20.0.0",
"igniteui-theming": "^24.0.1",
"igniteui-webcomponents": "^6.3.6",
"minireset.css": "~0.0.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^21.0.2",
"@angular/cli": "^21.0.2",
"@angular/compiler-cli": "^21.0.2",
"@igniteui/angular-schematics": "~20.0.1450",
"@types/express": "^5.0.1",
"@types/hammerjs": "^2.0.40",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.17.19",
"jasmine-core": "~5.4.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",
"typescript": "~5.9.3"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "4.26.0",
"@rollup/rollup-linux-x64-gnu": "4.26.0"
}
}