-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.07 KB
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": "extensions-web",
"version": "0.1.1",
"private": true,
"scripts": {
"start": "node dist/bin/www.js",
"build": "tsc && cp -r views dist/",
"devstart": "nodemon",
"test": "npm run unit && npm run integration",
"unit": "jest -c src/test/jest.config.unit.js",
"integration": "jest -c src/test/jest.config.integration.js --detectOpenHandles",
"contract-consumer": "jest -c src/test/jest.config.contract.js --detectOpenHandles",
"sass": "node-sass src/public/stylesheets/scss -o src/public/stylesheets/css -i false",
"lint": "eslint '{src,test}/**/*'",
"lint:fix": "eslint '{src,test}/**/*' --fix",
"sonarqube": "sonar-scanner",
"sonar-test": "jest -c jest.config.sonar.js --coverage",
"chs-dev": "nodemon --legacy-watch"
},
"dependencies": {
"@companieshouse/api-sdk-node": "^2.0.354",
"@companieshouse/node-session-handler": "^5.2.15",
"@companieshouse/web-security-node": "^4.4.22",
"axios": "^1.18.1",
"busboy": "^1.6.0",
"cookie-parser": "~1.4.7",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"form-data": "^4.0.5",
"govuk-frontend": "^3.11.0",
"http-errors": "~2.0.1",
"ioredis": "^5.8.2",
"js-yaml": "4.3.1",
"log4js": "^6.9.1",
"moment": "^2.30.1",
"msgpack5": "^6.0.2",
"nunjucks": "^3.2.4",
"redis": "^3.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/msgpack5": "^3.4.6",
"@types/node": "^24.10.2",
"@types/nunjucks": "^3.2.6",
"@types/redis": "^4.0.11",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jest": "^30.2.0",
"node-mocks-http": "^1.17.2",
"nodemon": "^3.1.11",
"sonarqube-scanner": "^5.0.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}