-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 726 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 726 Bytes
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
{
"name": "typescript-lambda-bundle",
"version": "1.0.0",
"description": "Example of a TS lambda",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack",
"prebuild": "rimraf dist"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.81",
"@types/node": "^16.4.10",
"eslint": "^7.23.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.1.0",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-sources": "^3.2.0",
"zip-webpack-plugin": "^4.0.0"
},
"dependencies": {
"aws-sdk": "^2.887.0",
"source-map-support": "^0.5.19",
"util": "^0.12.4"
}
}