-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 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
{
"name": "strike-off-objections-web",
"version": "0.0.1",
"description": "Web frontend for submitting objections to a company being struck off the register.",
"main": "app.ts",
"scripts": {
"start": "node dist/bin/www.js",
"build": "tsc && cp -r views dist/",
"devstart": "nodemon",
"sass": "node-sass src/public/stylesheets/scss -o src/public/stylesheets/css -i false",
"test": "jest",
"lint": "eslint '{src,test}/**/*'",
"sonarqube": "sonar-scanner",
"coverage": "jest --coverage --passWithNoTests"
},
"dependencies": {
"@companieshouse/api-sdk-node": "^2.0.147",
"@companieshouse/node-session-handler": "^5.0.1",
"@companieshouse/structured-logging-node": "^2.0.1",
"@companieshouse/web-security-node": "^2.0.5",
"axios": "^1.6.0",
"bufferutil": "^4.0.7",
"busboy": "^1.6.0",
"cookie-parser": "~1.4.6",
"express": "^4.19.2",
"express-validator": "^6.15.0",
"form-data": "^2.3.3",
"govuk-frontend": "^3.14.0",
"ioredis": "^4.28.5",
"js-yaml": "^3.14.1",
"moment": "^2.29.4",
"nunjucks": "^3.2.4",
"utf-8-validate": "^5.0.10",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/busboy": "^0.2.4",
"@types/express": "^4.17.17",
"@types/form-data": "^2.2.1",
"@types/jest": "^26.0.24",
"@types/nunjucks": "^3.2.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"nodemon": "^3.0.1",
"sonarqube-scanner": "^2.9.1",
"supertest": "^3.4.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.8.1",
"typescript": "^4.6.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/companieshouse/strike-off-objections-web.git"
},
"homepage": "https://github.com/companieshouse/strike-off-objections-web#readme"
}