-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.58 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.58 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
{
"name": "btms-portal-frontend",
"version": "0.0.0",
"description": "BTMS Frontend",
"sideEffects": false,
"main": ".server/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "run-s build:frontend",
"build:frontend": "NODE_ENV=production webpack",
"dev": "run-p frontend:watch server:watch",
"dev:debug": "run-p frontend:watch server:debug",
"frontend:watch": "NODE_ENV=development webpack --watch",
"git:pre-commit-hook": "npm run lint && npm test",
"postinstall": "npm run setup:husky && npm run build",
"lint": "run-s test:lint lint:scss",
"lint:fix": "eslint --fix",
"lint:scss": "stylelint \"src/**/*.scss\" --cache --cache-location .cache/stylelint --cache-strategy content --color --ignore-path .gitignore",
"postversion": "git add package.json package-lock.json && git commit -m $npm_package_version",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:lint": "eslint",
"server:watch": "node --inspect=0.0.0.0 --watch --watch-path=src --env-file-if-exists=.env.local src/index.js",
"server:debug": "node --inspect-brk=0.0.0.0 --watch --env-file-if-exists=.env.local src/index.js",
"prestart": "npm run build",
"start": "NODE_ENV=production node --use-strict .",
"setup:husky": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"author": "Defra DDTS",
"license": "OGL-UK-3.0",
"dependencies": {
"@babel/runtime": "^7.28.4",
"@defra/hapi-tracing": "^1.30.0",
"@elastic/ecs-pino-format": "^1.5.0",
"@hapi/bell": "^13.1.0",
"@hapi/catbox-memory": "^6.0.2",
"@hapi/catbox-redis": "^7.0.2",
"@hapi/cookie": "^12.0.1",
"@hapi/hapi": "^21.4.4",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.1",
"@hapi/vision": "^7.0.3",
"@hapi/yar": "^11.0.3",
"@joi/date": "2.1.1",
"@ministryofjustice/frontend": "5.1.5",
"aws-embedded-metrics": "^4.2.1",
"chart.js": "4.5.1",
"convict": "^6.2.4",
"cssnano": "^7.1.2",
"cssnano-preset-default": "^7.0.6",
"date-fns": "^4.1.0",
"govuk-frontend": "5.13.0",
"hapi-pino": "^13.0.0",
"hapi-pulse": "^3.0.1",
"https-proxy-agent": "^7.0.6",
"ioredis": "^5.8.2",
"joi": "^18.0.2",
"nunjucks": "^3.2.4",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"stream-json": "1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"autoprefixer": "^10.4.22",
"babel-jest": "30.2.0",
"babel-loader": "^10.0.0",
"babel-plugin-module-resolver": "5.0.2",
"babel-plugin-transform-import-meta": "^2.3.3",
"cheerio": "^1.1.2",
"chokidar": "^3.6.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.1",
"eslint": "9.39.1",
"global-jsdom": "27.0.0",
"husky": "^9.1.7",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-fetch-mock": "3.0.3",
"neostandard": "0.12.2",
"npm-run-all": "^4.1.5",
"postcss-load-config": "^6.0.1",
"postcss-loader": "^8.2.0",
"sass-embedded": "^1.93.3",
"sass-loader": "^16.0.6",
"source-map-loader": "^5.0.0",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.103.0",
"webpack-assets-manifest": "^5.2.1",
"webpack-cli": "^6.0.1"
}
}