-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 3.12 KB
/
package.json
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
{
"name": "flood-app",
"version": "8.12.0",
"description": "Flood risk app",
"main": "index.js",
"repository": "github:defra/flood-app",
"engines": {
"node": ">=18"
},
"browserslist": [
"IE 11"
],
"scripts": {
"start": "pm2 start config/pm2.json",
"start:local": "nodemon -r dotenv/config index.js",
"build:clean": "build/clean-src",
"build:cp-assets": "build/cp-assets",
"build:js": "build/build-js",
"build:css": "build/build-css",
"build": "build/build",
"lint": "standard",
"unit-test": "export ERRBIT_ENABLED=FALSE && export LOG_LEVEL=silent && FLOOD_APP_LOCAL_CACHE=true && lab --verbose -c -r console -o stdout -r lcov -o coverage/lcov.info --require dotenv/config",
"test": "npm run lint && npm run unit-test",
"create-release-notes": "node release-docs/lib/create-release-notes.js",
"postinstall": "npm run build",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') { throw e } }\""
},
"author": "defra",
"license": "ISC",
"dependencies": {
"@airbrake/node": "^2.1.8",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.26.0",
"@babel/traverse": "^7.23.2",
"@defra/flood-webchat": "^1.0.3",
"@hapi/boom": "^10.0.1",
"@hapi/catbox-redis": "^7.0.2",
"@hapi/code": "^9.0.3",
"@hapi/h2o2": "^10.0.4",
"@hapi/hapi": "^21.3.2",
"@hapi/hoek": "^11.0.2",
"@hapi/inert": "^7.1.0",
"@hapi/joi": "^17.1.1",
"@hapi/lab": "^25.1.3",
"@hapi/vision": "^7.0.3",
"@hapi/wreck": "^18.0.1",
"@hapi/yar": "^11.0.1",
"@turf/helpers": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/polygon-smooth": "^6.5.0",
"@turf/simplify": "^6.5.0",
"@turf/turf": "^6.5.0",
"@turf/union": "^7.1.0",
"accessible-autocomplete": "^2.0.4",
"assert": "^2.1.0",
"babel-loader": "^9.1.3",
"body-scroll-lock": "^3.1.5",
"core-js": "^3.38.1",
"d3": "^7.9.0",
"datatables.net-buttons": "^3.1.2",
"datatables.net-buttons-dt": "^3.0.2",
"datatables.net-dt": "1.12.1",
"elm-pep": "^1.0.6",
"geojson": "0.5.0",
"govuk-frontend": "^5.4.0",
"hapi-pino": "^12.1.0",
"hapi-rate-limit": "^7.1.0",
"jquery": "^3.7.1",
"lodash.isequal": "^4.5.0",
"micromatch": "^4.0.8",
"moment-timezone": "^0.5.34",
"node-schedule": "^2.1.0",
"nunjucks": "^3.2.4",
"ol": "^10.2.1",
"pino": "^9.2.0",
"pino-abstract-transport": "^1.1.0",
"pino-pretty": "^10.2.3",
"qs": "^6.12.1",
"regenerator-runtime": "^0.14.0",
"sass": "^1.77.6",
"sinon": "^18.0.0",
"standard": "^17.1.0",
"uglify-js": "^3.14.4",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"yargs": "^17.7.2"
},
"standard": {
"ignore": [
"server/dist",
"service-down"
]
},
"devDependencies": {
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"mockdate": "^3.0.5",
"node-html-parser": "^6.1.13",
"nodemon": "^3.0.1",
"proxyquire": "^2.1.3",
"webpack-bundle-analyzer": "^4.10.2"
}
}