-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 911 Bytes
/
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
{
"name": "terraform-typescript-lambda",
"version": "0.0.1",
"description": "Minimal example for using webpack for compiling lambda functions",
"private": true,
"main": "webpack.config.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"plan": "npm run build && terraform plan",
"deploy": "npm run build && terraform deploy",
"test:watch": "jest --watch",
"test": "jest"
},
"author": "Julian Krispel-Samsel",
"license": "MIT",
"dependencies": {
"@types/aws-sdk": "^2.7.0",
"aws-sdk": "^2.756.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.62",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"jest": "^26.6.3",
"ts-jest": "^26.4.3",
"ttypescript": "^1.5.12",
"typescript-is": "^0.16.3",
"webpack-cli": "^3.3.12"
}
}