-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "ts-lambda-local-dev",
"version": "2.1.1",
"description": "typescript lambda local development server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"compile": "rm -rf dist/ && tsc --sourceMap",
"lint": "eslint --ext .ts src/",
"prepublishOnly": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vcfvct/ts-lambda-local-dev.git"
},
"homepage": "https://github.com/vcfvct/ts-lambda-local-dev/blob/master/README.md",
"keywords": [
"typescript",
"lambda",
"debug",
"local",
"ts-node-dev",
"nodejs"
],
"author": "Han Li",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-ts-vcfvct": "^1.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/aws-lambda": "^8.10.73",
"express": "^4.18.2",
"http-method-enum": "^1.0.0",
"ts-node-dev": "^2.0.0"
},
"files": [
"/dist",
"/src"
]
}