-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.54 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.54 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
112
113
{
"name": "cff-chart-prototype",
"version": "0.0.0",
"description": "CDP Frontend Template",
"sideEffects": false,
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build:frontend": "NODE_ENV=production webpack",
"dev": "npm run frontend:watch & npm run server:watch wait",
"dev:debug": "npm run frontend:watch & server:debug wait",
"docker:build": "docker compose build",
"docker:dev": "docker compose up",
"frontend:watch": "NODE_ENV=development webpack --watch",
"git:pre-commit-hook": "npm run lint:fix",
"lint": "eslint",
"lint:js": "eslint",
"lint:fix": "eslint --fix",
"postinstall": "npm run setup:husky",
"postversion": "git add package.json package-lock.json && git commit -m $npm_package_version",
"server:debug": "nodemon --inspect-brk=0.0.0.0 --ext js --legacy-watch ./src",
"server:watch": "nodemon --inspect=0.0.0.0 --ext js,njk --legacy-watch ./src",
"setup:husky": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module",
"start": "NODE_ENV=production node --use-strict .",
"test": "TZ=UTC vitest run",
"test:coverage": "TZ=UTC vitest run --coverage",
"test:watch": "TZ=UTC vitest",
"docker:test": "npm run lint && npm test"
},
"author": "Defra DDTS",
"contributors": [
"Lee Gordon <lee.gordon@defra.gov.uk>",
"Nicholas Blows <nicholas.blows@defra.gov.uk>"
],
"license": "OGL-UK-3.0",
"dependencies": {
"@defra/cdp-auditing": "0.6.0",
"@defra/hapi-secure-context": "0.4.0",
"@defra/hapi-tracing": "1.30.0",
"@elastic/ecs-pino-format": "1.5.0",
"@hapi/catbox-memory": "6.0.2",
"@hapi/catbox-redis": "7.0.2",
"@hapi/hapi": "21.4.4",
"@hapi/inert": "7.1.0",
"@hapi/scooter": "7.0.0",
"@hapi/vision": "7.0.3",
"@hapi/yar": "11.0.3",
"aws-embedded-metrics": "4.2.1",
"blankie": "5.0.0",
"convict": "6.2.4",
"convict-format-with-validator": "6.2.0",
"cssnano": "7.1.2",
"cssnano-preset-default": "7.0.10",
"d3-array": "3.2.4",
"d3-axis": "3.0.0",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0",
"d3-time": "3.1.0",
"d3-time-format": "4.1.0",
"d3-zoom": "3.0.0",
"date-fns": "4.1.0",
"dotenv": "17.2.3",
"global-agent": "3.0.0",
"govuk-frontend": "5.13.0",
"hapi-pino": "13.0.0",
"hapi-pulse": "3.0.1",
"ioredis": "5.8.2",
"lodash": "4.17.21",
"nunjucks": "3.2.4",
"pino": "10.1.0",
"pino-pretty": "13.1.3",
"semver": "7.7.3",
"undici": "7.16.0"
},
"devDependencies": {
"@babel/preset-env": "7.28.5",
"@vitest/coverage-v8": "4.0.16",
"autoprefixer": "10.4.23",
"babel-loader": "10.0.0",
"cheerio": "1.1.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "13.0.1",
"eslint": "9.39.2",
"fake-indexeddb": "6.2.5",
"happy-dom": "20.3.4",
"husky": "9.1.7",
"jsdom": "26.0.0",
"neostandard": "0.12.2",
"nodemon": "3.1.11",
"npm-run-all": "4.1.5",
"postcss-load-config": "6.0.1",
"postcss-loader": "8.2.0",
"prettier": "3.7.4",
"sass-embedded": "1.97.0",
"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.16",
"vitest": "4.0.16",
"vitest-fetch-mock": "0.4.5",
"webpack": "5.104.0",
"webpack-assets-manifest": "6.5.0",
"webpack-cli": "6.0.1"
},
"overrides": {
"tmp": "0.2.5"
}
}