-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"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: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"
},
"contributors": [
{
"name": "Shaun Hare",
"email": "shaun.hare@dvsa.gov.uk"
}
],
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1354.0"
},
"devDependencies": {
"@dvsa/eslint-config-ts": "^3.0.0",
"@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",
"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",
"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"
}
}