forked from ExLibrisGroup/customModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.25 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
{
"name": "custom-module",
"version": "2.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prestart": "node prebuild.js",
"start:no-prebundle": "ng serve --prebundle=false",
"start:proxy": "ng serve --proxy-config ./proxy/proxy.conf.mjs",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"postbuild": "node postbuild.js",
"prebuild": "node prebuild.js",
"run:all": "node node_modules/@angular-architects/module-federation/src/server/mf-dev-server.js",
"prettier": "prettier --write src/**/*.{ts,js,css,html}"
},
"private": true,
"dependencies": {
"@angular-architects/module-federation": "^18.0.6",
"@angular/animations": "^18.2.8",
"@angular/cdk": "18.2.9",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/elements": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/material": "18.2.9",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@ngrx/entity": "^18.1.0",
"@ngrx/store": "^18.1.0",
"@ngrx/store-devtools": "^18.1.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@webcomponents/custom-elements": "^1.6.0",
"dotenv": "^16.4.5",
"rxjs": "~7.8.0",
"tslib": "^2.4.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-architects/module-federation-tools": "^19.0.1",
"@angular-devkit/build-angular": "^18.2.9",
"@angular/cli": "^18.2.9",
"@angular/compiler-cli": "^18.2.8",
"@types/jasmine": "~4.3.0",
"archiver": "^7.0.1",
"husky": "^9.1.7",
"jasmine-core": "~4.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",
"ngx-build-plus": "^18.0.0",
"prettier": "^3.7.4",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.5.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier --staged && ng lint && npm test",
"pre-push": "ng build --aot true"
}
}
}