-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.18 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.18 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@hexlabs/lambda-api-runner-ts",
"version": "0.0.1",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"run-lambda": "dist/index.js"
},
"files": [
"dist"
],
"exclude": [
"node_modules",
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"prepare": "husky install",
"lint": "eslint **/*.ts",
"example": "ts-node src/index.ts start -p $INIT_CWD/test/example2.json --cognito-claims $INIT_CWD/test/example.json handler $INIT_CWD/test/example-app.ts"
},
"eslintIgnore": [
"webpack.config.js"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-var-requires": 0
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "template",
"bugs": {
"url": "https://github.com/hexlabsio/lambda-api-runner-ts/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm outdated"
}
},
"jest": {
"preset": "ts-jest"
},
"homepage": "",
"devDependencies": {
"@hexlabs/schema-api-ts": "^2.0.103",
"@types/aws-lambda": "^8.10.124",
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"aws-lambda": "^1.0.7",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"path": "^0.12.7",
"ts-node": "^10.9.1"
}
}