generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
{
"name": "ffc-mpdp-frontend",
"version": "1.6.0",
"description": "Web frontend for MPDP workstream",
"homepage": "https://github.com/DEFRA/ffc-mpdp-frontend",
"main": "app/index.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run test:lint",
"test": "jest --runInBand --coverage=true",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:watch:all": "npm-run-all --parallel test:watch build:watch",
"test:lint": "standard",
"lint:fix": "standard --fix",
"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": [],
"license": "OGL-UK-3.0",
"dependencies": {
"@hapi/hapi": "21.3.12",
"@hapi/inert": "6.0.5",
"@hapi/vision": "7.0.0",
"@hapi/wreck": "18.0.0",
"applicationinsights": "2.5.1",
"govuk-frontend": "5.7.1",
"hapi-pino": "11.0.1",
"joi": "17.9.2",
"nunjucks": "3.2.4"
},
"devDependencies": {
"cheerio": "1.0.0-rc.12",
"clean-webpack-plugin": "4.0.0",
"css-loader": "6.6.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"jest": "29.0.0",
"jest-junit": "13.2.0",
"jsdom": "24.1.1",
"mini-css-extract-plugin": "2.5.3",
"nodemon": "3.1.7",
"npm-run-all": "4.1.5",
"resolve-url-loader": "5.0.0",
"sass": "1.49.7",
"sass-loader": "12.4.0",
"standard": "17.1.2",
"webpack": "5.95.0",
"webpack-cli": "4.10.0"
},
"standard": {
"globals": [
"$",
"browser",
"expect",
"test",
"jest",
"describe",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach",
"it"
],
"ignore": [
"app/dist/**/*.js"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}