generated from dvsa/dvsa-lambda-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.23 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
68
69
70
71
{
"name": "dvsa-lambda-starter",
"version": "1.2.0",
"description": "A package to act as a starter for typescript lambdas",
"main": "index.js",
"scripts": {
"lint": "eslint '*/**/*.ts' --quiet --fix",
"lint:ci": "eslint '*/**/*.ts'",
"test": "jest --coverage",
"test:ci": "jest --ci",
"build": "npm run build:prod",
"build:dev": "NODE_ENV=development webpack-cli --config webpack/webpack.development.js",
"watch:dev": "NODE_ENV=development webpack-cli --config webpack/webpack.development.watch.js",
"build:prod": "webpack-cli --config webpack/webpack.production.js",
"start:dev": "sam local start-api",
"invoke": "sam local invoke",
"tools-setup": "echo 'move on'",
"test-i": "echo 'no integration tests'",
"package": "npm run build:prod",
"sonar-scanner": "sonar-scanner"
},
"contributors": [
{
"name": "Shaun Hare",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@aws-lambda-powertools/parameters": "^1.18.1",
"@aws-sdk/client-appconfigdata": "^3.515.0",
"@aws-sdk/client-ssm": "^3.478.0",
"@dvsa/eslint-config-ts": "^3.0.0",
"@smithy/util-stream": "^2.1.3",
"@types/aws-lambda": "^8.10.114",
"@types/jest": "^28.1.8",
"@types/node": "^16.18.23",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"archiver": "^5.3.1",
"aws-sam-webpack-plugin": "^0.13.0",
"aws-sdk-client-mock": "^3.0.1",
"aws-sdk-client-mock-jest": "^3.0.1",
"copy-webpack-plugin": "^11.0.0",
"current-git-branch": "^1.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-security": "^1.7.1",
"fs-extra": "^10.1.0",
"jest": "^28.1.3",
"sonar-scanner": "^3.1.0",
"source-map-support": "^0.5.21",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"uuid": "^8.3.2",
"webpack": "^5.78.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"winston": "^3.8.2"
},
"engines": {
"node": "^18.15.0"
},
"dependencies": {
"@dvsa/cvs-microservice-common": "^0.9.5"
}
}