-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·91 lines (91 loc) · 2.91 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
{
"name": "ffc-demo-payment-web",
"description": "Digital service mock to view scheduled payments for financial aid in the event a property subsides into mine shaft.",
"version": "1.20.8",
"homepage": "https://github.com/DEFRA/ffc-demo-payment-web",
"repository": {
"type": "git",
"url": "https://github.com/DEFRA/ffc-demo-payment-web.git"
},
"main": "app/index.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run test:lint",
"test": "jest --runInBand --forceExit",
"test:integration": "jest --testPathPattern=test/integration",
"test:unit": "jest --testPathPattern=test/unit",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:unit-watch": "jest --testPathPattern=test/unit --coverage=false --onlyChanged --watch",
"test:lint": "standard",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js --runInBand --coverage=false --onlyChanged --watch --no-cache",
"start:watch": "npm-run-all --parallel build:watch start:nodemon",
"start:nodemon": "nodemon --inspect=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js",
"start:debug": "nodemon --inspect-brk=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js"
},
"author": "Defra DDTS",
"contributors": [
"John Watson [email protected]",
"Mark Harrop [email protected]",
"Matthew Collins [email protected]",
"David Bingham [email protected]",
"Fay Toward [email protected]",
"Paul Andrews [email protected]",
"Steve Hunt [email protected]",
"Steve Dickinson [email protected]",
"Fareed Mohammed [email protected]",
"Kaz Iyiola [email protected]"
],
"license": "OGL-UK-3.0",
"dependencies": {
"@hapi/hapi": "21.3.2",
"@hapi/hoek": "11.0.2",
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"@hapi/wreck": "18.0.1",
"@hapi/yar": "11.0.1",
"applicationinsights": "2.7.3",
"govuk-frontend": "4.7.0",
"joi": "17.10.1",
"moment": "2.29.4",
"nunjucks": "3.2.4"
},
"devDependencies": {
"@pact-foundation/pact": "9.11.1",
"@types/jest": "^29.5.11",
"blipp": "4.0.2",
"clean-webpack-plugin": "4.0.0",
"css-loader": "6.8.1",
"hapi-pino": "12.1.0",
"html-webpack-plugin": "5.5.3",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"mini-css-extract-plugin": "2.7.6",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"resolve-url-loader": "5.0.0",
"sass": "1.67.0",
"sass-loader": "13.3.2",
"standard": "17.1.0",
"style-loader": "3.3.3",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"nodemonConfig": {
"ignore": [
"test-output/**"
]
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
]
}
}