-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 3.09 KB
/
package.json
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
{
"name": "nhs-innovation-service-transactional-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"ng": "ng",
"start:dev:spa": "ng serve --host 0.0.0.0",
"start:dev:ssr": "ng run app:serve-ssr",
"build:spa": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --config ./jest.config.json --coverage --silent",
"serve:ssr": "node dist/app/server/main.js",
"build:ssr": "ng build --base-href /transactional/ --deploy-url /transactional/static/ && ng run app:server && npm run copyconfig",
"prerender": "ng run app:prerender",
"copyconfig": "cp web.config dist/app",
"lint": "ng lint --quiet",
"prettier:fix": "prettier --write src/",
"prettier:check": "prettier --check src/"
},
"engines": {
"node": ">=20.18.0 < 21.0.0",
"npm": ">=10.8.2 < 10.10.0"
},
"dependencies": {
"@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/forms": "^18.2.13",
"@angular/material": "^18.2.14",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.13",
"@angular/platform-server": "^18.2.13",
"@angular/router": "^18.2.13",
"@angular/ssr": "^18.2.17",
"@azure/msal-node": "^2.16.2",
"@microsoft/applicationinsights-angularplugin-js": "^15.3.6",
"@microsoft/applicationinsights-clickanalytics-js": "^3.3.6",
"@microsoft/applicationinsights-web": "^3.3.6",
"@ngx-translate/core": "^15.0.0",
"applicationinsights": "^2.9.6",
"axios": "^1.8.4",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"govuk-frontend": "^4.9.0",
"helmet": "^6.2.0",
"lodash": "^4.17.21",
"luxon": "^3.6.1",
"multer": "^1.4.5-lts.1",
"ng-dynamic-component": "~10.3.1",
"ngx-cookie-service": "^18.0.0",
"ngx-dropzone": "^3.1.0",
"ngx-logger": "^5.0.12",
"nhsuk-frontend": "^7.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.8.1",
"xhr2": "^0.2.1",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.17",
"@angular/cli": "^18.2.17",
"@angular/compiler-cli": "^18.2.13",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.1",
"@types/jasmine": "~5.1.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/luxon": "^3.6.2",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.30",
"angular-eslint": "^18.4.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"jasmine-core": "~5.2.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^14.5.4",
"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.1.0",
"prettier": "^3.5.3",
"typescript": "~5.5.2",
"typescript-eslint": "^8.29.1"
}
}