-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.71 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
{
"name": "ffc-grants-eligibility-checker",
"description": "FFC Grant Eligibility Checker",
"version": "1.0.46",
"license": "OGL-UK-3.0",
"contributors": [
"Andrew Folga <[email protected]>",
"Andrew Deacon <[email protected]>",
"David Barker <[email protected]>",
"Stephen Powell <[email protected]>"
],
"main": "./src/index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:q": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent",
"test:cov": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --coverageReporters='text' --coverageReporters='text-summary'",
"test:cov:q": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent --coverage --coverageReporters='text' --coverageReporters='text-summary'",
"test:update:snapshots": "npm test -- -u",
"lint": "eslint \"./**/*.js\" --cache --cache-strategy content --fix",
"format": "prettier --write \"**/*.js\"",
"format:njk": "prettier --write \"**/*.njk\" --ignore-path .prettierignore",
"build": "node build.js",
"install": "npm --ignore-scripts i",
"start": "npm run build && nodemon ./src/index.js",
"start:debug": "node --inspect-brk=0.0.0.0 ./src/index.js",
"start:docker": "docker-compose -f docker-compose.yaml -f docker-compose.override.yaml up --build",
"prepare": "husky install",
"snyk-test": "snyk test",
"snyk-monitor": "snyk monitor"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-assertions": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.2.3",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jsdoc": "^4.0.3",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"sass": "^1.80.5",
"snyk": "^1.1293.1",
"standard": "^17.1.2",
"supertest": "^7.0.0"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.10",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"govuk-frontend": "^5.5.0",
"nunjucks": "^3.2.4",
"prettier-plugin-jinja-template": "^2.0.0",
"uuid": "^10.0.0",
"xstate": "^4.38.3"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}