-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.86 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.86 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "pfl-care-arrangement-plan",
"version": "0.0.5",
"description": "PFL Care Arrangement Plan",
"repository": "git@ssh.dev.azure.com:v3/ACE-C514/pfl-care-arrangement-plan/pfl-care-arrangement-plan",
"license": "MIT",
"scripts": {
"build": "node esbuild/esbuild.config.mjs --build",
"postbuild": "node scripts/generatePdf.js",
"start": "node $ENV_FILE_OPTION $NODE_OPTIONS dist/app.js | bunyan -o short",
"start:dev": "ENV_FILE_OPTION='--env-file=.env' nodemon --exec 'npm run build && npm run start'",
"lint": "eslint . --cache --max-warnings 0",
"lint:fix": "eslint . --cache --max-warnings 0 --fix",
"prettier": "prettier . --cache --check",
"prettier:fix": "prettier . --cache --write",
"typecheck": "tsc && tsc -p e2e-tests",
"test": "DOTENV_CONFIG_PATH='.env.test' jest",
"test:update-pdf-snapshots": "DOTENV_CONFIG_PATH='.env.test' UPDATE_PDF_SNAPSHOTS=true jest server/__tests__/pdf",
"test:save-html-preview": "DOTENV_CONFIG_PATH='.env.test' jest createHtml.test",
"test:ci": "DOTENV_CONFIG_PATH='.env.test' jest --runInBand --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"e2e:debug": "playwright test --debug",
"e2e:shard": "playwright test --shard=1/4",
"e2e:quick": "playwright test --grep-invert=\"Axe Core Scanning\"",
"e2e:axe": "playwright test accessibility-axe.spec.ts",
"prepare": "husky"
},
"engines": {
"node": "^22",
"npm": "^11.0.0"
},
"dependencies": {
"bunyan": "1.8.15",
"bunyan-format": "0.2.1",
"compression": "1.8.1",
"connect-flash": "0.1.1",
"connect-redis": "8.0.2",
"cookie-parser": "1.4.7",
"csrf-sync": "4.1.0",
"express": "^4.22.2",
"express-rate-limit": "^7.5.0",
"express-session": "1.19.0",
"express-validator": "^7.3.1",
"govuk-frontend": "5.14.0",
"helmet": "8.1.0",
"http-errors": "2.0.0",
"i18n": "0.15.3",
"jspdf": "^4.2.0",
"nocache": "4.0.0",
"nunjucks": "3.2.4",
"on-finished": "^2.4.1",
"rate-limit-redis": "^4.2.1",
"redis": "4.7.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@eslint/js": "9.28.0",
"@jgoz/esbuild-plugin-typecheck": "4.0.4",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "6.6.3",
"@tsconfig/node22": "22.0.5",
"@types/bunyan": "1.8.11",
"@types/bunyan-format": "0.2.9",
"@types/compression": "1.8.1",
"@types/connect-flash": "0.0.40",
"@types/cookie-parser": "1.4.10",
"@types/express-session": "1.18.2",
"@types/http-errors": "2.0.5",
"@types/i18n": "0.13.12",
"@types/jest": "29.5.14",
"@types/jsdom": "21.1.7",
"@types/node": "22.15.30",
"@types/nunjucks": "3.2.6",
"@types/on-finished": "^2.3.5",
"@types/supertest": "6.0.3",
"@typescript-eslint/eslint-plugin": "8.34.0",
"@typescript-eslint/parser": "8.34.0",
"dotenv": "16.5.0",
"dotenv-cli": "8.0.0",
"esbuild": "0.25.5",
"esbuild-plugin-clean": "1.0.1",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-manifest": "1.0.5",
"esbuild-sass-plugin": "3.3.1",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.13.3",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-unused-imports": "4.1.4",
"glob": "^12.0.0",
"globals": "16.2.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-html-reporter": "4.1.0",
"jest-junit": "^8.0.0",
"jsdom": "26.1.0",
"nodemon": "3.1.10",
"prettier": "3.5.3",
"prettier-plugin-jinja-template": "2.1.0",
"start-server-and-test": "2.0.12",
"supertest": "7.1.1",
"ts-jest": "29.3.4",
"typescript": "5.8.3",
"typescript-eslint": "8.34.0"
}
}