-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.37 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.37 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
92
93
94
95
96
97
{
"name": "hmpps-template-typescript",
"version": "0.0.1",
"description": "HMPPS Typescript Template",
"repository": "git@github.com:ministryofjustice/hmpps-template-typescript.git",
"license": "MIT",
"scripts": {
"prepare": "hmpps-precommit-hooks-prepare",
"watch-ts": "tsc -w",
"build": "node esbuild/esbuild",
"start": "node $NODE_OPTIONS dist/server.js | bunyan -o short",
"start:dev": "node esbuild/esbuild --watch",
"start-feature": " node $NODE_DEBUG_OPTION --env-file=feature.env dist/server.js | bunyan -o short",
"start-feature:dev": "node esbuild/esbuild --watch --env feature.env",
"lint": "eslint . --cache --max-warnings 0",
"lint-fix": "eslint . --cache --max-warnings 0 --fix",
"typecheck": "tsc && tsc -p integration_tests && tsc -p assets/js",
"test": "jest",
"test:ci": "jest --runInBand",
"security_audit": "npx audit-ci --config audit-ci.json",
"int-test": "npx playwright test",
"int-test-ui": "npx playwright test --ui",
"int-test-init:ci": "npx playwright install",
"clean": "rm -rf dist test_results",
"rebuild": "npm run clean && npm run setup && npm run build",
"setup": "npm ci && hmpps-npm-script-run-allowlist"
},
"engines": {
"node": "^24",
"npm": "^11"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.1047.0",
"@ministryofjustice/frontend": "^9.0.0",
"@ministryofjustice/hmpps-auth-clients": "^2.0.0",
"@ministryofjustice/hmpps-monitoring": "^2.1.0",
"@ministryofjustice/hmpps-rest-client": "^2.1.0",
"applicationinsights": "^2.9.8",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"compression": "^1.8.1",
"connect-flash": "^0.1.1",
"connect-redis": "^9.0.0",
"csrf-sync": "^4.2.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"govuk-frontend": "^6.1.0",
"helmet": "^8.1.0",
"http-errors": "^2.0.1",
"jwt-decode": "^4.0.0",
"nocache": "^4.0.0",
"nunjucks": "^3.2.4",
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
"redis": "^5.12.1",
"superagent": "^10.3.0"
},
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "^4.0.4",
"@ministryofjustice/eslint-config-hmpps": "^1.0.3",
"@ministryofjustice/frontend-types": "2.0.0",
"@ministryofjustice/hmpps-npm-script-allowlist": "0.0.5",
"@ministryofjustice/hmpps-precommit-hooks": "3.0.0",
"@playwright/test": "^1.60.0",
"@tsconfig/node24": "^24.0.4",
"@types/bunyan": "^1.8.11",
"@types/bunyan-format": "^0.2.9",
"@types/compression": "^1.8.1",
"@types/connect-flash": "0.0.40",
"@types/express-session": "^1.19.0",
"@types/http-errors": "^2.0.5",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.12.4",
"@types/nunjucks": "^3.2.6",
"@types/passport": "^1.0.17",
"@types/passport-oauth2": "^1.8.0",
"@types/superagent": "^8.1.9",
"@types/supertest": "^7.2.0",
"audit-ci": "^7.1.0",
"aws-sdk-client-mock": "^4.1.0",
"del": "8.0.1",
"esbuild": "^0.28.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-manifest": "^1.0.5",
"esbuild-sass-plugin": "^3.7.0",
"jest": "^30.4.2",
"jest-html-reporter": "^4.4.0",
"jest-junit": "^17.0.0",
"jsonwebtoken": "^9.0.3",
"lint-staged": "^17.0.4",
"nock": "^14.0.15",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
}
}