-
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.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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": "mock-oauth-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"sls": "serverless offline start",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.682.0",
"@aws-sdk/lib-dynamodb": "^3.685.0",
"@types/aws-lambda": "^8.10.145",
"aws-sdk": "^2.1691.0",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-handlebars": "^8.0.1",
"jsonwebtoken": "^9.0.2",
"serverless-http": "^3.2.0",
"uuid": "^11.0.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-handlebars": "^5.3.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"serverless-offline": "^14.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}