-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 841 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
{
"name": "lambda_v1",
"version": "1.0.0",
"description": "",
"main": "./dist/app.js",
"scripts": {
"build-dev": "npm run clear && npm run compile && node -e 'require(\"./dist/app.js\").handler()'",
"dev-js": "node -e 'require(\"./dist/app.js\").handler()'",
"dev": "ts-node -e 'require(\"./src/app.ts\").handler()'",
"compile": "tsc",
"clear": "rimraf dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/aws-lambda": "^8.10.83",
"@types/node": "^13.13.5",
"aws-sdk": "^2.1004.0",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.4.1",
"ts-node": "^10.2.1"
}
}