-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.78 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.78 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
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
92
93
94
{
"name": "mes-result-processing-service",
"version": "0.1.0",
"author": "DVSA",
"license": "MIT",
"description": "A serverless microservice responsible for responsible for passing practical driving test results to internal DVSA systems for processing, such as TARS.",
"homepage": "https://github.com/dvsa/mes-result-processing-service#README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/dvsa/mes-result-processing-service.git"
},
"bugs": {
"url": "https://github.com/dvsa/mes-result-processing-service/issues"
},
"scripts": {
"clean": "rimraf build artefacts",
"compile": "rm -rf build && tsc",
"compile-no-emit": "tsc --noEmit -p .",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"package": "./package.sh",
"security-scan": "git secrets --scan && git log -p | scanrepo && snyk test",
"start": "npm run compile && sls offline start",
"test": "npm run compile && jasmine",
"test:jasmine-coverage": "c8 npm run test",
"prepare": "husky install",
"sonar-scanner": "node_modules/sonar-scanner/bin/sonar-scanner"
},
"dependencies": {
"@dvsa/mes-microservice-common": "1.2.4",
"axios": "1.12.0",
"bottleneck": "^2.19.5",
"inversify": "^6.0.2",
"lodash": "^4.17.23",
"moment": "^2.29.4",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@dvsa/mes-test-schema": "3.51.0",
"@types/aws-lambda": "^8.10.126",
"@types/jasmine": "^5.1.2",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"aws-lambda-test-utils": "^1.3.0",
"axios-mock-adapter": "^1.22.0",
"c8": "^8.0.1",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"lint-staged": "^15.1.0",
"nock": "^13.3.8",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"serverless": "^3.37.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.0",
"serverless-webpack": "^5.13.0",
"snyk": "^1.1248.0",
"sonar-scanner": "^3.1.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"yamljs": "^0.3.0"
},
"c8": {
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"**/__mocks__/*",
"**/__tests__/*"
],
"exclude-after-remap": false,
"sourceMap": true,
"produce-source-map": true,
"instrument": true
},
"lint-staged": {
"./src/**/*.ts": [
"npm run lint:fix"
]
}
}