-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 995 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
36
37
{
"name": "htmx-lambda-service",
"version": "0.1.0",
"bin": {
"htmx-lambda-service": "bin/htmx-lambda-service.js"
},
"scripts": {
"start": "tsc -w --project ./tsconfig.build.json & nodemon ./dist/index.js",
"build": "tsc --build ./tsconfig.build.json",
"predeploy": "npm run build",
"synth": "cdk synth",
"diff": "cdk diff",
"deploy": "cdk deploy"
},
"devDependencies": {
"@kitajs/ts-html-plugin": "^4.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.4.0",
"@types/node": "18.14.6",
"@types/source-map-support": "^0.5.10",
"aws-cdk": "^2.137.0",
"aws-cdk-lib": "^2.137.0",
"constructs": "^10.0.0",
"jest": "^29.5.0",
"nodemon": "^3.1.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@kitajs/html": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-openid-connect": "^2.17.1"
}
}