-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "appsync-crud-sls-backend",
"private": true,
"version": "1.0.0",
"scripts": {
"sls": "sls",
"export-env": "sls export-env",
"export-env-staging": "sls export-env -s staging",
"export-env-production": "sls export-env -s production",
"deploy": "sls deploy",
"integration-test": "jest --verbose ./__tests__/integration",
"e2e-test": "jest --verbose ./__tests__/e2e",
"unit-test": "jest --verbose ./__tests__/unit",
"signup": "ts-node ./scripts/signup.ts"
},
"prettier": {
"printWidth": 120
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "3.17.0",
"@aws-sdk/client-dynamodb": "3.17.0",
"@aws-sdk/lib-dynamodb": "3.17.0",
"@aws-sdk/util-dynamodb": "3.17.0",
"env-var": "7.0.1",
"pino": "6.11.3",
"pino-lambda": "2.0.0",
"ulid": "2.3.0",
"yup": "0.32.9"
},
"devDependencies": {
"@tsconfig/node14": "1.0.0",
"@types/aws-lambda": "8.10.76",
"@types/chance": "1.1.2",
"@types/jest": "26.0.23",
"@types/pino": "6.3.8",
"chance": "1.1.7",
"dotenv": "10.0.0",
"graphql": "15.5.0",
"graphql-request": "3.4.0",
"jest": "27.0.3",
"serverless": "2.43.1",
"serverless-appsync-plugin": "1.11.3",
"serverless-esbuild": "1.12.0",
"serverless-export-env": "1.4.4",
"serverless-iam-roles-per-function": "3.2.0",
"ts-jest": "27.0.2",
"ts-node": "10.0.0",
"typescript": "4.3.2"
}
}