-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.84 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "rock-paper-scissors-app-s2o",
"version": "1.0.0",
"description": "Rock Paper Scissors Game",
"main": "handler.js",
"scripts": {
"start": "serverless offline start --port 8080 --host 0.0.0.0 --stage local",
"package:dev": "serverless package --stage dev",
"deploy:dev": "serverless deploy --stage dev",
"test:unit": "jest --no-cache --verbose --color true --config jest.config.js",
"test:coverage": "jest --no-cache --verbose --color true --config jest.config.js --coverage",
"watch:unit": "jest --no-cache --verbose --watchAll --color true --config jest.config.js",
"watch:coverage": "jest --no-cache --verbose --watchAll --color true --config jest.config.js --coverage"
},
"license": "MIT",
"dependencies": {
"@aws/dynamodb-data-mapper": "^0.7.3",
"@aws/dynamodb-data-mapper-annotations": "^0.7.3",
"aws-xray-sdk": "^3.5.4",
"node-forge": "^1.3.1",
"uuid": "^9.0.1",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.133",
"@types/jest": "^29.2.2",
"@types/node": "^20.11.10",
"@types/node-forge": "^1.3.0",
"@types/request": "^2.48.12",
"@types/request-promise-native": "^1.0.18",
"@types/uuid": "^9.0.8",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1544.0",
"babel-helper-evaluate-path": "^0.5.0",
"chai": "^5.0.3",
"jest": "^29.3.1",
"jest-cucumber": "^4.4.0",
"jest-each": "^29.3.1",
"jest-html-reporter": "^3.7.0",
"raf": "^3.4.1",
"request": "^2.88.2",
"request-debug": "^0.2.0",
"request-promise-native": "^1.0.9",
"serverless": "^3.24.1",
"serverless-offline": "^13.3.3",
"serverless-plugin-optimize": "^4.2.1-rc.1",
"serverless-plugin-tracing": "^2.0.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.8.4"
}
}