-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
127 lines (127 loc) · 4.26 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "cvs-app-vtm",
"version": "1.31",
"description": "DVSA CVS Vehicle Testing Management Application",
"main": "index.js",
"engines": {
"node": "20.16.*",
"npm": "10.8.*"
},
"scripts": {
"ng": "ng",
"config": "ts-node ./setenv.ts",
"start": "npm run config -- --environment=dev && ng serve",
"start:dev1": "npm run config -- --env=dev1 && ng serve",
"start:dev2": "npm run config -- --env=dev2 && ng serve",
"build": "ng build --optimization --progress --aot",
"postbuild": "npm run sentry:sourcemaps",
"watch": "ng build --watch",
"sonar-scanner": "npm run test:ci && sonar-scanner",
"security-checks": "git secrets --scan",
"lint": "biome check src",
"lint:fix": "npm run lint -- --write",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"test": "jest --colors --maxWorkers=50% --coverage",
"test:workflow": "jest --maxWorkers=50%",
"test:watch": "jest --watch",
"test:ci": "jest --ci --runInBand --watchAll=false --reporters=default",
"mock-api": "npx ts-node ./mock-api/mock-api-server.ts",
"prepare": "husky && ts-patch install -s",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org driver-and-vehicle-standards-a --project vehicle-test-management ./dist && sentry-cli sourcemaps upload --org driver-and-vehicle-standards-a --project vehicle-test-management ./dist"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.7",
"@angular/common": "^18.2.7",
"@angular/compiler": "^18.2.7",
"@angular/core": "^18.2.7",
"@angular/forms": "^18.2.7",
"@angular/platform-browser": "^18.2.7",
"@angular/platform-browser-dynamic": "^18.2.7",
"@angular/router": "^18.2.7",
"@azure/msal-angular": "^3.0.24",
"@azure/msal-browser": "^3.24.0",
"@dvsa/cvs-type-definitions": "^7.8.0",
"@ngrx/effects": "^18.0.2",
"@ngrx/entity": "^18.0.2",
"@ngrx/operators": "^18.1.0",
"@ngrx/router-store": "^18.0.2",
"@ngrx/store": "^18.0.2",
"@ngrx/store-devtools": "^18.0.2",
"@sentry/angular": "^8.35.0",
"@sentry/types": "^8.35.0",
"accessible-autocomplete": "^2.0.4",
"angular-google-tag-manager": "^1.10.0",
"deep-object-diff": "^1.1.9",
"govuk-frontend": "^4.8.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"ngrx-store-localstorage": "18.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"uuid": "^9.0.1",
"validate-govuk-date": "^1.0.3",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular/build": "^18.2.7",
"@angular/cli": "^18.2.7",
"@angular/compiler-cli": "^18.2.7",
"@babel/core": "^7.23.9",
"@biomejs/biome": "1.9.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@compodoc/compodoc": "^1.1.23",
"@dvsa/biome-config": "0.2.0",
"@dvsa/cvs-microservice-common": "1.3.1",
"@ngrx/schematics": "^18.0.2",
"@sentry/cli": "^2.32.2",
"@types/jest": "^29.5.12",
"@types/json-server": "^0.14.7",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.14.8",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.1.3",
"commitlint-plugin-function-rules": "^3.1.0",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.4",
"jest-sonar-reporter": "^2.0.0",
"json-server": "^0.17.3",
"lint-staged": "^15.2.10",
"sonarqube-scanner": "^3.3.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "18.0.4",
"@nx/nx-darwin-x64": "18.0.4",
"@nx/nx-linux-x64-gnu": "18.0.4",
"@nx/nx-win32-x64-msvc": "18.0.4"
},
"lint-staged": {
"*.{js,ts,mjs,css,md,ts,json}": "npm run lint:fix -- --no-errors-on-unmatched"
},
"jestSonar": {
"reportPath": "./coverage",
"reportFile": "test-report.xml",
"indent": 4
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvsa/cvs-app-vtm.git"
},
"author": "DVSA",
"license": "MIT",
"bugs": {
"url": "https://github.com/dvsa/cvs-app-vtm/issues"
},
"homepage": "https://github.com/dvsa/cvs-app-vtm#readme"
}