This repository has been archived by the owner on Jun 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 2.52 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "govuk-prototype-rig",
"version": "0.9.3",
"description": "Rapidly create prototypes of GOV.UK services",
"keywords": [
"govuk",
"design system",
"prototyping"
],
"homepage": "https://x-govuk.github.io/govuk-prototype-rig/",
"bugs": {
"url": "https://github.com/x-govuk/govuk-prototype-rig/issues"
},
"license": "MIT",
"files": [
"lib"
],
"bin": {
"govuk-prototype-rig": "./bin.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/x-govuk/govuk-prototype-rig.git"
},
"scripts": {
"build-docs": "eleventy",
"watch-docs": "eleventy --serve",
"build-assets": "rollup --config --silent",
"watch-assets": "rollup --config --silent --watch",
"serve": "govuk-prototype-rig",
"start": "npm-run-all --serial build-assets serve",
"dev": "npm-run-all --parallel watch-assets serve",
"lint": "standard && stylelint 'app/**/*.scss'",
"test": "ava",
"coverage": "c8 ava"
},
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@x-govuk/govuk-prototype-components": "^2.0.0",
"@x-govuk/govuk-prototype-filters": "^1.0.0",
"browser-sync": "^2.27.8",
"client-sessions": "^0.8.0",
"cookie-parser": "^1.4.6",
"cosmiconfig": "^8.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.4.0",
"express-session": "^1.13.0",
"govuk-decorated-components": "^1.0.0",
"govuk-frontend": "^4.3.0",
"govuk-prototype-rig": "file:./",
"govuk-prototype-wizard": "^0.2.0",
"inquirer": "^9.0.0",
"lodash": "^4.17.21",
"marked": "^5.0.0",
"mock-req-res": "^1.2.0",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.1",
"portscanner": "^2.2.0",
"rollup": "^3.7.5",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.49.9",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@x-govuk/govuk-eleventy-plugin": "^5.0.0",
"ava": "^5.1.0",
"c8": "^7.11.0",
"sinon": "^15.0.1",
"standard": "^17.0.0",
"stylelint": "^14.6.1",
"stylelint-config-gds": "^0.3.0",
"supertest": "^6.2.3"
},
"publishConfig": {
"access": "public"
},
"c8": {
"exclude": [
"app",
"tests"
],
"reporter": [
"text",
"lcovonly"
]
},
"engines": {
"node": "^18"
},
"type": "module",
"stylelint": {
"extends": "stylelint-config-gds/scss"
}
}