generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "ffc-ffd-business",
"version": "0.1.1",
"description": "Landing page for Farming Front Door",
"homepage": "https://github.com/DEFRA/ffc-ffd-business",
"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 js --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/crumb": "9.0.1",
"@hapi/hapi": "20.2.2",
"@hapi/inert": "6.0.3",
"@hapi/vision": "7.0.2",
"@hapi/wreck": "18.0.1",
"applicationinsights": "2.3.5",
"ffc-auth": "0.1.0",
"govuk-frontend": "4.7.0",
"hapi-auth-jwt2": "10.4.0",
"hapi-pino": "12.1.0",
"joi": "17.9.2",
"log-timestamp": "0.3.0",
"nunjucks": "3.2.4"
},
"devDependencies": {
"blipp": "4.0.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.2.6",
"html-webpack-plugin": "5.3.1",
"jest": "29.2.2",
"jest-junit": "14.0.1",
"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.63.6",
"sass-loader": "11.1.1",
"standard": "17.0.0",
"style-loader": "2.0.0",
"webpack": "5.88.1",
"webpack-cli": "5.1.4"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
],
"ignore": [
"app/dist/**/*.js"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}