-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 957 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
31
32
{
"name": "actor-age-api",
"version": "1.0.0",
"description": "Lambda function backend for the actor age game",
"main": "mainFunc.ts",
"author": "SAM CLI",
"license": "MIT",
"scripts": {
"lint": "eslint '*.ts' --quiet --fix",
"compile": "tsc",
"build": "tsc",
"test": "npm run compile && npm run unit"
},
"dependencies": {
"dotenv": "^16.4.5",
"esbuild": "^0.14.14"
},
"devDependencies": {
"@jest/globals": "^29.2.0",
"@types/aws-lambda": "^8.10.92",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"aws-lambda-mock-context": "^3.2.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}