-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "manage-vaccinations-in-schools-prototype",
"version": "2.0.0",
"description": "Manage vaccinations in schools prototype",
"keywords": [
"nhsuk",
"prototype"
],
"license": "MIT",
"scripts": {
"create-data": "node lib/create-data.js",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:scss": "stylelint '**/*.scss'",
"lint:scss:fix": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:scss:fix",
"start": "nhsuk-prototype-rig",
"postinstall": "npm run create-data"
},
"dependencies": {
"@colinaut/action-table": "^2.4.6",
"@faker-js/faker": "^9.0.0",
"@x-govuk/govuk-prototype-components": "^3.0.0",
"@x-govuk/govuk-prototype-wizard": "^0.4.0",
"date-fns": "^4.0.0",
"dotenv": "^16.4.5",
"express-flash": "^0.0.2",
"govuk-frontend": "^5.0.0",
"i18n": "^0.15.1",
"json-as-xlsx": "^2.5.6",
"lodash": "^4.17.21",
"nhsuk-prototype-rig": "^0.4.1"
},
"devDependencies": {
"@types/lodash": "^4.17.10",
"@x-govuk/eslint-config": "^0.0.1",
"prettier": "^3.1.0",
"stylelint": "^16.2.1",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^6.0.4"
},
"engines": {
"node": "^22"
},
"private": true,
"type": "module",
"prototype": {
"defaultRigLayout": "_layouts/default.njk",
"nunjucksPaths": [
"./node_modules/govuk-frontend/dist",
"./node_modules/@x-govuk/govuk-prototype-components"
],
"serviceName": "Manage vaccinations in schools",
"templateExtension": "njk"
}
}