-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.23 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
{
"name": "feedback-api",
"version": "1.0.0",
"description": "aws-nodejs-typescript template",
"main": "infra/feedback.ts",
"scripts": {
"build": "tsc",
"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",
"format": "biome format --write",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest",
"test:watch": "vitest --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",
"prepare": "husky"
},
"engines": {
"node": "22"
},
"dependencies": {
"@aws-sdk/client-comprehend": "3.1070.0",
"@aws-sdk/client-ssm": "3.1070.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.260.0",
"aws-sdk": "2.1693.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": {
"@biomejs/biome": "2.5.13",
"@types/aws-lambda": "8.10.162",
"@types/node": "22.20.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"aws-cdk": "2.1127.0",
"esbuild": "0.28.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-prettier": "4.2.5",
"husky": "^9.1.7",
"json-schema-to-ts": "1.6.5",
"lint-staged": "^17.5.1",
"prettier": "2.8.8",
"prisma": "6.19.3",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"tsconfig-paths": "3.15.0",
"tsx": "4.22.4",
"typescript": "5.9.3",
"vitest": "5.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome check --write --no-errors-on-unmatched",
"npm run test"
]
},
"license": "MIT"
}