-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "github-actions-example-lambda",
"version": "1.0.0",
"description": "An example of a GitHub Actions workflow for a Node.js Lambda function",
"author": "Tom Shani <[email protected]>",
"license": "MIT",
"main": "./dist/docker-handler.mjs",
"files": [
"dist"
],
"type": "module",
"repository": {
"type": "git",
"url": "ssh://[email protected]/volara/volara-engine"
},
"engines": {
"node": "18"
},
"scripts": {
"build": "tsc --noEmit false",
"lint": "eslint",
"start": "node .",
"test": "node --loader tsx/esm --test ./src/**/*.spec.mts",
"tsc": "tsc"
},
"dependencies": {
"dotenv": "^16.3.1"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/aws-lambda": "^8.10.125",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
}
}