-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "nhsuk-prototype-kit",
"version": "5.0.0",
"description": "Rapidly create HTML prototypes of NHS websites and services.",
"main": "app.js",
"scripts": {
"build": "gulp build",
"postinstall": "npm run build",
"start": "node app.js",
"test": "jest --coverage=true",
"prewatch": "gulp build",
"watch": "gulp",
"lint:js": "eslint -c ./linters/.eslintrc.js app.js middleware/**/*.js lib/**/*.js app/*.js docs/*.js"
},
"author": "https://github.com/nhsuk/",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"body-parser": "^1.20.3",
"browser-sync": "^3.0.3",
"client-sessions": "^0.8.0",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-nodemon": "^2.5.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"lodash": "^4.17.21",
"nhsuk-frontend": "^9.1.0",
"nunjucks": "^3.2.4",
"path": "^0.12.7",
"sass": "^1.79.5"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"jest": "^29.7.0"
},
"engines": {
"node": "^20"
}
}