-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
64 lines (64 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "appsyncmasterclass-backend",
"private": true,
"version": "1.0.0",
"description": "Backend for the AppSync Masterclass demo app",
"main": "index.js",
"scripts": {
"sls": "sls",
"exportEnv": "sls export-env",
"jest": "jest",
"test": "jest --verbose ./__tests__/test_cases/unit --silent",
"integration-test": "jest --verbose ./__tests__/test_cases/integration --silent",
"e2e-test": "jest --verbose ./__tests__/test_cases/e2e --silent",
"load-test": "dotenv artillery run ./.artillery/test.yml",
"load-test:debug": "DEBUG=http,http:response dotenv artillery run ./.artillery/test.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theburningmonk/appsyncmasterclass-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/theburningmonk/appsyncmasterclass-backend/issues"
},
"homepage": "https://github.com/theburningmonk/appsyncmasterclass-backend#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"amplify-appsync-simulator": "^1.23.8",
"amplify-velocity-template": "^1.3.4",
"artillery": "^2.0.0-21",
"async-retry": "^1.3.1",
"aws-sdk": "^2.778.0",
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^6.0.0",
"jest": "^26.6.1",
"serverless": "2.4.0",
"serverless-appsync-plugin": "^1.4.0",
"serverless-export-env": "^1.4.0",
"serverless-iam-roles-per-function": "^2.0.2",
"serverless-layers": "^2.3.3",
"serverless-lumigo": "^1.13.2",
"serverless-plugin-ifelse": "^1.0.7",
"ws": "^7.4.4",
"yargs": "^17.5.1"
},
"dependencies": {
"@lumigo/tracer": "^1.71.0",
"@middy/core": "^1.5.2",
"@middy/ssm": "^1.5.2",
"algoliasearch": "^4.8.5",
"aws-appsync": "^4.0.3",
"aws-xray-sdk-core": "^3.3.4",
"chance": "^1.1.7",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.20",
"ulid": "^2.3.0",
"uuid": "^8.3.2"
}
}