-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "generative-ai-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./build.sh",
"test": "jest",
"lint": "eslint . --max-warnings=0",
"init:comfy": "./init_comfy.sh",
"deploy": "npm run lint; npm run build; npm test; pulumi up -C pulumi/ --stack generative-ai-service --yes"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-auto-scaling": "^3.395.0",
"@aws-sdk/client-cloudwatch": "^3.395.0",
"@aws-sdk/client-dynamodb": "^3.388.0",
"@aws-sdk/client-ecs": "^3.395.0",
"@aws-sdk/client-sqs": "^3.388.0",
"@aws-sdk/lib-dynamodb": "^3.388.0",
"lambda-api": "^1.0.3"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"esbuild": "^0.19.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}