This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
91 lines (91 loc) · 3.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "connecting-to-services",
"version": "1.19.0",
"description": "Helping to connect people to appropriate services, meeting their time, location and accessibility needs.",
"scripts": {
"brunch-build": "yarn brunch build",
"coverage-upload-coveralls": "cat ./coverage/lcov.info | coveralls",
"git-hook": "yarn lint && yarn test-unit",
"lint": "yarn lint-backend && yarn lint-frontend",
"lint-backend": "eslint --ext .js,.json .",
"lint-frontend": "eslint ./app/public/js",
"lint-watch": "esw --watch .",
"start-watch": "yarn brunch watch & nodemon app.js | ./node_modules/bunyan/bin/bunyan",
"start-watch-debug": "yarn brunch watch & nodemon --inspect-brk=0.0.0.0 app.js | ./node_modules/bunyan/bin/bunyan",
"test": "nyc --nycrc-path=.nycrc.json mocha --exit --recursive test",
"test-and-upload-coverage": "yarn lint && yarn test-with-coverage && yarn coverage-upload-coveralls",
"test-unit": "nyc --nycrc-path=.nycrc.json mocha --exit --recursive test/unit",
"test-with-coverage": "nyc --nycrc-path=.nycrc.json --reporter=lcov --reporter=cobertura mocha --exit --recursive test --reporter mocha-junit-reporter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhsuk/connecting-to-services.git"
},
"bugs": {
"url": "https://github.com/nhsuk/connecting-to-services/issues"
},
"husky": {
"hooks": {
"post-rewrite": "yarn git-hook",
"pre-commit": "yarn git-hook",
"pre-push": "yarn git-hook"
}
},
"dependencies": {
"after-brunch": "^0.0.5",
"babel-brunch": "^7.0.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.13.3",
"brunch": "^2.10.12",
"compression": "^1.7.0",
"cookie-parser": "^1.3.3",
"express": "^4.16.2",
"express-prom-bundle": "^5.0.2",
"fingerprint-brunch": "^2.0.2",
"google-libphonenumber": "^3.2.3",
"helmet": "^3.8.1",
"map-replace": "^1.0.2",
"moment": "^2.20.1",
"moment-opening-times": "^2.9.0",
"moment-timezone": "^0.5.26",
"nhsuk-bunyan-logger": "^1.4.1",
"nhsuk-frontend": "^2.3.2",
"node-sass": "^4.7.2",
"nunjucks": "^3.0.1",
"object.values": "^1.0.3",
"on-headers": "^1.0.1",
"postcode": "^2.0.0",
"postcodesio-client": "^0.3.3",
"prom-client": "^11.2.1",
"request": "^2.81.0",
"request-promise-native": "^1.0.7",
"require-environment-variables": "^1.1.2",
"sass-brunch": "^2.10.4",
"uglify-es": "^3.1.8",
"verror": "^1.10.0"
},
"devDependencies": {
"bower": "^1.8.0",
"chai": "^4.1.2",
"chai-http": "^4.1.0",
"chai-moment": "^0.1.0",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^3.0.1",
"destroy": "^1.0.4",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-nhsuk": "^0.21.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-mocha": "^6.1.1",
"eslint-watch": "^6.0.0",
"husky": "^3.0.5",
"mocha": "^6.0.2",
"mocha-junit-reporter": "^1.23.1",
"nock": "^11.3.4",
"nodemon": "^2.0.1",
"nyc": "^14.1.1",
"proxyquire": "^2.0.0"
}
}