This repository was archived by the owner on May 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "apply-juggling-license",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"scripts": {
"dev": "nodemon /app/server",
"format": "prettier . --write",
"lint:css": "stylelint 'app/**/*.css'",
"lint:js": "eslint .",
"lint": "npm run lint:css && npm run lint:js",
"start": "node app/server",
"test": "playwright test --ui",
"typecheck:client": "tsc -p app/client/jsconfig.json",
"typecheck:server": "tsc -p app/server/jsconfig.json",
"typecheck:tests": "tsc --p tests/tsconfig.json --noEmit",
"typecheck": "npm run typecheck:client && npm run typecheck:server",
"validate": "npm run lint && npm run typecheck"
},
"dependencies": {
"@paralleldrive/cuid2": "^3.3.0",
"@types/nunjucks": "^3.2.6",
"body-parser": "^2.2.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"date-fns": "^4.1.0",
"debug": "^4.4.3",
"express": "^5.2.1",
"express-prom-bundle": "^8.0.0",
"express-session": "^1.19.0",
"express-validator": "^7.3.2",
"govuk-frontend": "^5.14.0",
"govuk-markdown": "^0.8.0",
"helmet": "^8.1.0",
"htmx.org": "^2.0.7",
"http-errors": "^2.0.0",
"marked": "^17.0.6",
"morgan": "^1.10.1",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@tsconfig/node-lts": "^24.0.0",
"@tsconfig/recommended": "^1.0.10",
"@types/express": "^5.0.6",
"@types/govuk-frontend": "^5.11.0",
"@types/node": "^22.19.17",
"dotenv": "^17.4.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"nodemon": "^3.1.14",
"prettier": "3.8.3",
"stylelint-config-gds": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0"
},
"stylelint": {
"extends": "stylelint-config-gds/css"
},
"overrides": {
"stylelint": "^17.0.0"
}
}