-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.22 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
{
"name": "overseas-entities-web",
"version": "0.0.1",
"description": "Web front-end for the Register An Overseas Entity service",
"main": "app.ts",
"scripts": {
"start:dev": "npm i && npm run build && nodemon",
"start": "node dist/bin/www.js",
"build": "tsc && cp -r views dist/",
"lint": "eslint '{src,test}/**/*'",
"lint:fix": "eslint '{src,test}/**/*' --fix",
"sonarqube-base-branch": "sonar-scanner",
"sonarqube-pull-request": "sonar-scanner -D sonar.pullrequest.base=main",
"sonarqube": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); if [[ $branch == \"HEAD\" ]]; then echo $branch && npm run sonarqube-base-branch; else echo $branch && npm run sonarqube-pull-request; fi;",
"test": "jest",
"coverage": "jest --coverage --forceExit --passWithNoTests",
"prepare": "husky install"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/companieshouse/overseas-entities-web.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"homepage": "https://github.com/companieshouse/overseas-entities-web#readme",
"dependencies": {
"@companieshouse/api-sdk-node": "^2.0.239",
"@companieshouse/node-session-handler": "^5.0.1",
"@companieshouse/structured-logging-node": "^2.0.1",
"@companieshouse/web-security-node": "^4.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"govuk-frontend": "^4.6.0",
"helmet": "^7.1.0",
"ioredis": "^4.28.5",
"luxon": "^2.4.0",
"nocache": "^4.0.0",
"nunjucks": "^3.2.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/luxon": "^2.3.2",
"@types/node": "^18.11.18",
"@types/nunjucks": "^3.2.1",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"nodemon": "^3.0.1",
"sonarqube-scanner": "^3.0.1",
"supertest": "^7.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.2"
}
}