-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"name": "feedback-api",
"version": "1.0.0",
"description": "aws-nodejs-typescript template",
"main": "infra/feedback.ts",
"scripts": {
"build": "tsc",
"cdk": "cdk",
"synth:api": "cd infra && npx cdk synth FeedbackApiStack",
"deploy:api": "cd infra && npx cdk deploy FeedbackApiStack",
"deploy:api:dev": "npm run deploy:api -- --profile dev",
"deploy:api:prod": "npm run deploy:api -- --profile prod",
"diff": "cdk diff",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"sso:login:dev": "aws sso login --profile dev",
"sso:login:prod": "aws sso login --profile prod",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit --skipLibCheck",
"watch": "tsc -w",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"prisma-migrate:reset": "npx prisma migrate reset",
"prisma-migrate:dev": "npx prisma migrate dev",
"prisma:generate": "npx prisma generate"
},
"engines": {
"node": "22"
},
"dependencies": {
"@aws-sdk/client-comprehend": "3.936.0",
"@aws-sdk/client-ssm": "3.936.0",
"@azure/openai": "1.0.0-beta.13",
"@middy/core": "3.6.2",
"@middy/http-json-body-parser": "3.6.2",
"aws-cdk-lib": "2.228.0",
"aws-sdk": "2.1692.0",
"aws-sdk-client-mock": "4.1.0",
"aws-sdk-client-mock-jest": "4.1.0",
"constructs": "^10.0.0",
"dotenv": "^17.2.1",
"googleapis": "109.0.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/aws-lambda": "8.10.159",
"@types/jest": "29.5.14",
"@types/node": "18.19.110",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"aws-cdk": "2.1033.0",
"esbuild": "0.27.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-prettier": "4.2.5",
"jest": "29.7.0",
"json-schema-to-ts": "1.6.5",
"prettier": "2.8.8",
"prisma": "6.19.0",
"ts-jest": "29.4.5",
"ts-node": "10.9.2",
"tsconfig-paths": "3.15.0",
"tsx": "4.20.6",
"typescript": "5.9.3"
},
"license": "MIT"
}