generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.95 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
{
"name": "ffc-pay-request-editor",
"version": "1.24.22",
"description": "Edit payment requests",
"homepage": "https://github.com/DEFRA/ffc-pay-request-editor",
"main": "app/index.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run test:lint",
"test": "jest --runInBand --forceExit",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:lint": "standard",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js --coverage=false --onlyChanged --watch --runInBand --no-cache",
"start:watch": "npm-run-all --parallel build:watch start:nodemon",
"start:debug": "nodemon --inspect-brk=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js",
"start:nodemon": "nodemon --inspect=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js"
},
"author": "Defra",
"contributors": [
"John Watson [email protected]",
"Marc Templeton [email protected]",
"Paul Popa [email protected]",
"Steve Dickinson [email protected]",
"Abidemi Adio [email protected]",
"Simon Dunn [email protected]",
"Callum Leighton [email protected]",
"Kirsten Williamson [email protected]",
"Sam Plackett [email protected]",
"Leigh Godson [email protected]"
],
"license": "OGL-UK-3.0",
"dependencies": {
"@azure/identity": "4.3.0",
"@azure/msal-node": "2.9.2",
"@hapi/catbox-redis": "6.0.2",
"@hapi/cookie": "11.0.2",
"@hapi/crumb": "8.0.1",
"@hapi/hapi": "20.2.1",
"@hapi/hoek": "9.1.1",
"@hapi/inert": "6.0.3",
"@hapi/vision": "6.1.0",
"@hapi/yar": "10.1.1",
"@joi/date": "2.1.0",
"applicationinsights": "2.9.6",
"ffc-messaging": "2.9.1",
"ffc-pay-event-publisher": "1.2.0",
"govuk-frontend": "4.7.0",
"hapi-pino": "10.1.0",
"joi": "17.7.0",
"log-timestamp": "0.3.0",
"nunjucks": "3.2.4",
"pg": "8.6.0",
"pg-hstore": "2.3.3",
"sequelize": "6.29.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@hapi/catbox-memory": "5.0.1",
"blipp": "4.0.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.2.6",
"html-webpack-plugin": "5.3.1",
"jest": "27.5.1",
"jest-junit": "13.0.0",
"mini-css-extract-plugin": "1.6.0",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"resolve-url-loader": "5.0.0",
"sass": "1.32.13",
"sass-loader": "11.1.1",
"standard": "16.0.4",
"style-loader": "2.0.0",
"webpack": "5.94.0",
"webpack-cli": "4.10.0"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
],
"ignore": [
"app/dist/**/*.js",
"test/acceptance/**/*.js",
"test/acceptance/**/*.mjs",
"test/acceptance/**/*.cjs"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}