-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "fws-app",
"version": "5.0.2",
"description": "FWS Web App",
"main": "index.js",
"engines": {
"node": "22.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": "bin/run-unit-tests",
"test": "npm run lint & npm run unit-test",
"postinstall": "./install-hooks.sh && npm run build",
"docker:start-infrastructure": "docker compose -f docker/infrastructure.yml up -d",
"docker:start-test-double-infrastructure": "docker compose -f docker/infrastructure.yml up -d fws-app-redis",
"docker:stop-infrastructure": "docker compose -f docker/infrastructure.yml down",
"docker:stop-test-double-infrastructure": "docker compose -f docker/infrastructure.yml rm -f -s fws-app-redis"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/bell": "13.1.0",
"@hapi/boom": "10.0.1",
"@hapi/catbox-redis": "7.0.2",
"@hapi/cookie": "12.0.1",
"@hapi/hapi": "21.4.6",
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"@hapi/wreck": "18.1.0",
"blipp": "4.0.2",
"govuk-frontend": "6.1.0",
"hapi-pino": "13.0.0",
"https-proxy-agent": "7.0.6",
"joi": "18.0.2",
"moment-timezone": "0.6.0",
"nunjucks": "3.2.4",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"sass": "1.97.3"
},
"devDependencies": {
"@hapi/code": "9.0.3",
"@hapi/lab": "26.0.0",
"proxyquire": "2.1.3",
"standard": "17.1.2"
},
"standard": {
"ignore": [
"server/dist",
"service-down"
]
}
}