This repository has been archived by the owner on Jun 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.87 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
{
"name": "em-show",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=7.10.1"
},
"scripts": {
"start": "./node_modules/.bin/ts-node -r tsconfig-paths/register src/main/server.ts",
"lint": "tslint --project tsconfig.json --type-check && sass-lint -v -q",
"sass": "gulp sass copy-files",
"test": "NODE_ENV=mocha LOG_LEVEL=OFF mocha --compilers ts:ts-node/register -r tsconfig-paths/register $(find src/test \\( -name '*.ts' -or -name '*.js' \\) ! -path '*a11y*' ! -path '*/routes/*') --reporter mochawesome --reporter-options reportFilename=unit,inlineAssets=true,reportTitle=expressjs-template-unit",
"test:routes": "NODE_ENV=mocha LOG_LEVEL=OFF mocha --compilers ts:ts-node/register -r tsconfig-paths/register $(find src/test \\( -name '*.ts' -or -name '*.js' \\) -path '*/routes/*') --reporter mochawesome --reporter-options reportFilename=routes,inlineAssets=true,reportTitle=expressjs-template-routes",
"test:a11y": "NODE_ENV=mocha LOG_LEVEL=ERROR mocha --compilers ts:ts-node/register -r tsconfig-paths/register src/test/a11y --timeout 60000 --reporter mochawesome --reporter-options reportFilename=a11y,inlineAssets=true,reportTitle=expressjs-template-a11y",
"test:nsp": "nsp check",
"build": "npm run sass",
"test:coverage": "echo 'not implemented'",
"sonar-scan": "echo 'not implemented'",
"sonar-scanner": "node_modules/sonar-scanner/bin/sonar-scanner",
"sonar-scan": "cross-env NODE_PATH=. sonar-scanner -Dsonar.projectKey='em-show' -Dsonar.sources=src/main -Dsonar.tests=src/test -Dsonar.exclusions=src/test/**,node_modules/**,src/main/** "
},
"dependencies": {
"@hmcts/info-provider": "^1.0.0",
"@hmcts/nodejs-healthcheck": "^1.4.3",
"@hmcts/nodejs-logging": "^3.0.0",
"@types/node": "^8.0.28",
"body-parser": "^1.18.1",
"config": "^1.26.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"express": "^4.15.4",
"express-nunjucks": "^2.2.3",
"govuk-elements-sass": "^3.1.1",
"govuk_template_jinja": "^0.23.0",
"helmet": "^3.8.1",
"jquery": "^3.2.1",
"nunjucks": "^3.0.1",
"require-directory": "^2.1.1",
"serve-favicon": "^2.4.4",
"ts-node": "^3.3.0",
"tsconfig-paths": "^2.3.0",
"typescript": "^2.5.2"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^2.2.43",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"debug": "^3.0.1",
"gulp": "^3.9.1",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.1.0",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"mocha": "^3.5.3",
"mochawesome": "^2.3.1",
"nock": "^9.0.16",
"nsp": "^2.8.0",
"pa11y": "^4.13.0",
"sass-lint": "^1.11.1",
"sinon": "^3.3.0",
"sinon-chai": "^2.13.0",
"supertest": "^3.0.0",
"tslint": "^5.7.0",
"cross-env": "^5.2.0",
"sonar-scanner": "^3.1.0"
}
}