-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.02 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.02 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
{
"name": "fmfp",
"version": "3.5.0",
"description": "Flood map for planning",
"main": "index.js",
"engines": {
"node": ">=24.10.0"
},
"scripts": {
"start": "node index.js",
"copy": "sh ./bin/copy-assets",
"build:jsAndCss": "webpack",
"build:jsAndCss-submodule": "webpack --config webpack.submodule.mjs",
"build": "npm run copy && npm run build:jsAndCss",
"build-submodule": "npm run copy && npm run build:jsAndCss-submodule ",
"setup-submodule": "cd defra-map && npm ci --ignore-scripts && cd ..",
"eslint": "eslint",
"test": "npm run eslint && jest --runInBand --collectCoverage",
"test-timings": "jest --runInBand --collectCoverage --outputFile=test/results.json --json && node ./test/parseTestResults.js",
"test-quick": "NOLOG=true jest --collectCoverage",
"jest-watch": "NOLOG=true jest --watch",
"jest-watch-coverage": "NOLOG=true jest --watchAll --coverage",
"postinstall": "npm run build",
"kill": "sudo kill -9 $(sudo lsof -t -i:3000)",
"increment-version": "npm version prerelease --preid=pre -m \"Set Version to %s\"",
"set-config": "run(){ cp ./config/server.$1.json ./config/server.json; }; run"
},
"author": "defra",
"license": "ISC",
"dependencies": {
"@arcgis/core": "^4.31.3",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@defra/flood-map": "^0.6.8",
"@defra/fmp-utilities": "github:DEFRA/fmp-utilities",
"@esri/arcgis-rest-request": "^4.2.3",
"@hapi/boom": "^10.0.1",
"@hapi/catbox": "^12.1.1",
"@hapi/catbox-memory": "^6.0.2",
"@hapi/cookie": "^12.0.1",
"@hapi/h2o2": "^10.0.4",
"@hapi/hapi": "^21.4.3",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.3",
"@hapi/yar": "^11.0.3",
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@mapbox/polyline": "^1.2.1",
"@turf/turf": "^7.2.0",
"area-polygon": "^1.0.1",
"axios": "^1.13.5",
"babel-loader": "^10.0.0",
"blipp": "^4.0.2",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"dotenv": "^17.2.3",
"event-target-polyfill": "^0.0.4",
"geodesy": "^2.4.0",
"govuk-frontend": "^5.11.0",
"hapi-pino": "^13.0.0",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"joi": "^18.0.1",
"magic-comments-loader": "^2.1.4",
"mini-css-extract-plugin": "^2.9.2",
"moment-timezone": "^0.6.0",
"ngr-to-bng": "0.0.1",
"node-cache": "^5.1.2",
"nunjucks": "^3.2.4",
"preact": "^10.28.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sass": "^1.93.2",
"sass-loader": "^16.0.3",
"sass-mq": "^7.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.104.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "^3.0.0",
"webpack-remove-empty-scripts": "^1.0.4"
},
"devDependencies": {
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.0.1",
"neostandard": "^0.12.2"
}
}