-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "govuk-prototype-kit-docs",
"description": "Site for the GOV.UK Prototype Kit",
"version": "0.0.0",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"build": "node lib/build/generate-assets",
"dev": "node lib/build/build-watch-and-serve",
"serve": "node listen-on-port",
"lint": "standard",
"rapidtest": "jest --bail",
"test:heroku": "start-server-and-test 'npx --yes heroku local --port 3000' 3000 'curl localhost:3000'",
"test": "jest && npm run lint"
},
"dependencies": {
"@govuk-prototype-kit/step-by-step": "^2.0.0",
"ansi-colors": "^4.1.1",
"body-parser": "^1.14.1",
"browser-sync": "^2.27.11",
"chokidar": "^3.5.3",
"cookie-parser": "^1.4.6",
"cross-spawn": "^7.0.2",
"del": "^6.0.0",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs-extra": "^10.0.1",
"govuk-frontend": "^4.8.0",
"gray-matter": "^4.0.3",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"memorystore": "^1.6.7",
"nodemon": "^2.0.15",
"nunjucks": "^3.2.1",
"portscanner": "^2.1.1",
"require-dir": "^1.0.0",
"sass": "^1.49.10",
"sync-request": "^6.0.0",
"universal-analytics": "^0.5.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"glob": "^7.1.4",
"govuk-prototype-kit": "^0.0.1-alpha.3",
"jest": "^28.1.1",
"standard": "^14.3.3",
"start-server-and-test": "^1.14.0",
"supertest": "^6.3.3",
"wait-on": "^6.0.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/tmp/"
]
}
}