-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "leo-frontend-alpha",
"version": "1.0.0",
"description": "",
"author": "HMPO",
"main": "app.js",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"start": "node .",
"start-dev": "nodemon .",
"postinstall": "npm run build",
"build": "npm run build:sass && npm run build:js",
"build:sass": "mkdir -p public/stylesheets; sass --load-path=node_modules/ assets/stylesheets/app.scss --style=compressed public/stylesheets/application.css",
"build:js": "mkdir -p public/javascripts; cat node_modules/govuk-frontend/govuk/all.js node_modules/hmpo-components/all.js assets/javascripts/*.js > public/javascripts/application.js",
"lint": "eslint .",
"test:unit": "nyc _mocha ./test/unit --recursive --require ./test/unit/helper",
"prettier": "prettier . --write",
"pretty-lint": "npm run prettier && npm run lint"
},
"dependencies": {
"body-parser": "latest",
"cookie-parser": "latest",
"express": "latest",
"express-session": "latest",
"jsonwebtoken": "9.0.2",
"govuk-frontend": "latest",
"hmpo-components": "latest",
"hmpo-config": "latest",
"hmpo-form-wizard": "latest",
"hmpo-i18n": "latest",
"hmpo-logger": "latest",
"hmpo-model": "latest",
"sass": "latest",
"nunjucks": "latest",
"hmpo-app": "latest",
"@msdyn365-commerce/retail-proxy": "latest",
"@azure/msal-node": "latest"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.3",
"esm": "^3.2.25",
"@eslint/js": "latest",
"eslint": "latest",
"eslint-config-prettier": "^9.1.0",
"nodemon": "latest",
"prettier": "3.2.5",
"hmpo-nunjucks-test": "^1.4.1",
"sinon-chai": "latest",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"reqres": "^3.0.1",
"mocha": "^10.4.0"
}
}