-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.52 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
{
"name": "appdev-ts-lambda-training",
"version": "0.0.5",
"author": "DVSA",
"license": "MIT",
"description": "A repository to practice TypeScript lambda development",
"homepage": "https://github.com/dvsa/appdev-ts-lambda-training#README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/dvsa/appdev-ts-lambda-training.git"
},
"bugs": {
"url": "https://github.com/dvsa/appdev-ts-lambda-training/issues"
},
"scripts": {
"clean": "rimraf build artefacts",
"compile": "rm -rf build && tsc",
"compile-no-emit": "tsc --noEmit -p .",
"lint": "eslint '*/**/*.ts'",
"lint:fix": "eslint '*/**/*.ts' --fix",
"package": "./package.sh",
"prepare": "husky install",
"prepush": "npm run security-scan && npm run lint && npm test",
"security-scan": "git secrets --scan && git log -p | scanrepo",
"start": "npm run compile && sls offline start",
"start:reload": "npm run compile && sls offline start --reloadHandler",
"test": "npm run compile && jasmine",
"test:integration": "npm run compile && jasmine \"build/**/*int.js\"",
"test:jasmine-coverage": "c8 npm run test"
},
"dependencies": {
"@dvsa/mes-microservice-common": "1.1.6",
"mysql2": "^3.9.1",
"serverless-mysql": "^1.5.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@dvsa/eslint-config-des": "^0.1.0",
"@types/aws-lambda": "^8.10.130",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.11.19",
"@types/supertest": "^2.0.16",
"aws-lambda-test-utils": "^1.3.0",
"aws-sdk-mock": "^5.8.0",
"c8": "^8.0.1",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"serverless": "^3.38.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.2",
"serverless-webpack": "^5.13.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typemoq": "^2.1.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"yamljs": "^0.3.0"
},
"lint-staged": {
"./src/**/*.ts": [
"npm run lint:fix"
]
},
"c8": {
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"**/__mocks__/*",
"**/__tests__/*"
],
"exclude-after-remap": false,
"sourceMap": true,
"produce-source-map": true,
"instrument": true
}
}