-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "accessibility-training",
"version": "1.0.0",
"description": "A fictional NHS service website that can be used for accessibility training",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/nhsuk/accessibility-training.git"
},
"scripts": {
"build": "gulp build",
"postinstall": "npm run build",
"start": "node app.js",
"pa11y-ci": "pa11y-ci --reporter=pa11y-ci-reporter-html --sitemap http://localhost:3000/service/sitemap.xml",
"test": "",
"prewatch": "gulp build",
"watch": "gulp",
"lint:js": "eslint -c ./linters/.eslintrc.js app.js middleware/**/*.js lib/**/*.js app/*.js"
},
"author": "Michael Cheung",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"basic-auth": "^2.0.1",
"body-parser": "^1.20.2",
"browser-sync": "^3.0.2",
"client-sessions": "^0.8.0",
"dotenv": "^6.0.0",
"express": "^4.19.2",
"express-session": "^1.17.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-nodemon": "^2.5.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^5.1.0",
"keypather": "^3.0.0",
"nhsuk-frontend": "^8.1.1",
"nunjucks": "^3.2.4",
"path": "^0.12.7",
"sass": "^1.62.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.27.5",
"pa11y-ci": "^3.1.0",
"pa11y-ci-reporter-html": "^6.0.2"
}
}