-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
29 lines (29 loc) · 936 Bytes
/
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
{
"name": "express-prototype",
"description": "GOVUK prototyping app in Express",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x",
"npm": "10.x"
},
"dependencies": {
"@x-govuk/govuk-prototype-components": "^3.0.9",
"dotenv": "^16.4.7",
"express": "~4.21.2",
"govuk-frontend": "^5.7.1",
"nunjucks": "^3.2.4",
"sass": "^1.83.0"
},
"devDependencies": {
"puppeteer-core": "^23.11.0"
},
"scripts": {
"sass": "npx sass --load-path=node_modules --quiet-deps app/assets/sass/application.scss static/application.css",
"start": "npm run sass && node start.js",
"dev": "npm run watch & node start.js",
"watch": "sass --load-path=node_modules --quiet-deps --watch app/assets/sass/application.scss static/application.css",
"screenshots": "npx node tasks/screenshot-services.js",
"discover-start-pages": "npx node tasks/discover-start-pages.js"
}
}