-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "fws-app",
"version": "2.4.0",
"description": "FWS Web App",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "pm2 start index.js --name fws-app -i 0",
"stop": "pm2 kill",
"build:css": "bin/build-css",
"build": "bin/build",
"lint": "standard",
"unit-test": "lab -v -c -r console -o stdout -r lcov -o coverage/lcov.info",
"test": "npm run lint & npm run unit-test",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/bell": "12.3.0",
"@hapi/boom": "9.1.4",
"@hapi/catbox-redis": "6.0.2",
"@hapi/cookie": "11.0.2",
"@hapi/good": "9.0.1",
"@hapi/good-console": "9.0.1",
"@hapi/good-squeeze": "6.0.0",
"@hapi/hapi": "20.2.1",
"@hapi/inert": "6.0.5",
"@hapi/joi": "17.1.1",
"@hapi/vision": "6.1.0",
"@hapi/wreck": "17.2.0",
"govuk-frontend": "4.0.1",
"https-proxy-agent": "5.0.0",
"moment-timezone": "0.5.37",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"@hapi/code": "8.0.7",
"@hapi/lab": "25.1.3",
"blipp": "4.0.2",
"node-sass": "^9.0.0",
"standard": "16.0.4"
},
"standard": {
"ignore": [
"server/dist",
"service-down"
]
}
}