-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 919 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
33
34
35
{
"name": "aws-drizzle-api",
"version": "0.1.0",
"bin": {
"aws-drizzle-api": "bin/aws-drizzle-api.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"drizzle:generate": "npx drizzle-kit generate:pg --config='./lib/db/drizzle.config.ts' ",
"drizzle:migrate": "npx ts-node './lib/db/migrator-script.ts'"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.137",
"@types/jest": "^29.5.4",
"@types/node": "20.5.3",
"@types/pg": "^8.11.6",
"drizzle-kit": "^0.20.14",
"ts-node": "^10.9.1",
"typescript": "~5.1.6"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.569.0",
"aws-cdk-lib": "^2.140.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.5",
"pg": "^8.7.3",
"postgres": "^3.4.4",
"source-map-support": "^0.5.21"
}
}