-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "fl-auth-service-lambda",
"version": "1.0.0",
"description": "First Love Church Authentication microservice using AWS Lambda, Neo4j, and TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"test": "jest",
"migrate:members-to-users": "ts-node src/scripts/migrate-members-to-users.ts"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.500.0",
"@aws-sdk/client-secrets-manager": "^3.500.0",
"aws-sdk": "^2.1693.0",
"bcryptjs": "^2.4.3",
"express": "^4.22.1",
"jsonwebtoken": "^9.0.2",
"neo4j-driver": "^5.15.0",
"serverless-http": "^3.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.131",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.25",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"axios": "^1.13.4",
"jest": "^30.2.0",
"serverless": "^3.38.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}