-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "nhsuk-prototype-rig",
"version": "0.4.1",
"description": "Rapidly create prototypes of NHS.UK services",
"keywords": [
"nhsuk",
"design system",
"prototyping"
],
"bugs": {
"url": "https://github.com/x-govuk/nhsuk-prototype-rig/issues"
},
"license": "MIT",
"files": [
"bin",
"lib"
],
"bin": {
"nhsuk-prototype-rig": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x-govuk/nhsuk-prototype-rig.git"
},
"scripts": {
"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",
"dev": "nhsuk-prototype-rig --watch",
"start": "nhsuk-prototype-rig",
"test": "NODE_ENV=test node --test",
"coverage": "NODE_ENV=test node --test --experimental-test-coverage",
"release": "np"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@x-govuk/govuk-prototype-filters": "^1.1.0",
"browser-sync": "^3.0.0",
"client-sessions": "^0.8.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.0.0",
"esbuild": "^0.24.0",
"esbuild-sass-plugin": "^3.3.1",
"express": "^4.17.3",
"express-rate-limit": "^7.1.0",
"express-session": "^1.13.0",
"lodash": "^4.17.21",
"nhsuk-decorated-components": "^0.1.0",
"nhsuk-frontend": "^9.0.0",
"nhsuk-prototype-rig": "file:./",
"nodemon": "^3.1.7",
"nunjucks": "^3.2.1",
"portscanner": "^2.2.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"mock-req-res": "^1.2.0",
"np": "^10.0.0",
"prettier": "^3.1.0",
"sinon": "^19.0.0",
"stylelint": "^16.0.0",
"stylelint-config-gds": "^2.0.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=20"
},
"type": "module"
}