-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 858 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": "aws-sam-webpack-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Richard Buggy <rich@graphboss.com>",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.83",
"aws-sam-webpack-plugin": "file:../aws-sam-webpack-plugin",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"aws-sdk": "^2.986.0"
},
"scripts": {
"build": "webpack-cli",
"clean": "node_modules/rimraf/bin.js .aws-sam .vscode",
"prebuild": "node_modules/rimraf/bin.js .aws-sam .vscode",
"prewatch": "node_modules/rimraf/bin.js .aws-sam .vscode",
"watch": "webpack-cli -w"
}
}