generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.32 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
{
"name": "ffc-sfi-processing-web",
"version": "1.12.0",
"description": "FFC SFI agreement processing web service",
"homepage": "https://github.com/DEFRA/ffc-sfi-processing-web",
"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 john.watson1@defra.gov.uk",
"Simon Dunn simon.dunn1@defra.gov.uk"
],
"license": "OGL-UK-3.0",
"dependencies": {
"@azure/identity": "3.3.0",
"@hapi/crumb": "8.0.1",
"@hapi/hapi": "21.3.2",
"@hapi/hoek": "11.0.2",
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"applicationinsights": "2.1.8",
"blipp": "4.0.2",
"ffc-messaging": "2.7.0",
"govuk-frontend": "3.14.0",
"hapi-pino": "9.0.0",
"joi": "17.4.2",
"log-timestamp": "0.3.0",
"moment": "2.29.4",
"nunjucks": "3.2.4",
"pg": "8.7.1",
"pg-hstore": "2.3.4",
"sequelize": "6.33.0",
"uuid": "8.3.2"
},
"devDependencies": {
"clean-webpack-plugin": "4.0.0",
"css-loader": "6.5.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"jest": "29.7.0",
"jest-junit": "13.0.0",
"mini-css-extract-plugin": "2.4.4",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"resolve-url-loader": "4.0.0",
"sass": "1.43.4",
"sass-loader": "12.3.0",
"standard": "16.0.4",
"style-loader": "3.3.1",
"webpack": "5.88.2",
"webpack-cli": "4.9.1"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
],
"ignore": [
"app/dist/**/*.js"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}