-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "crisiscleanup-3-awsconnect",
"version": "1.0.0",
"description": "Crisis Cleanup AWS Connect Lambda Integrations",
"main": "src/index.js",
"repository": "https://github.com/CrisisCleanup/crisiscleanup-3-awsconnect",
"author": "BradenM",
"license": "MIT",
"private": false,
"scripts": {
"format": "prettier --write ./{*,**/*}.js **/**/*.js ",
"logs": "sls logs --env dev --stage dev -f",
"logs:staging": "sls logs --env staging --stage staging -f",
"offline": "localstack start",
"offline:dbadmin": "cross-env DYNAMO_ENDPOINT=http://localhost:4566 dynamodb-admin",
"offline:all": "concurrently --kill-others 'yarn offline:dbadmin' 'yarn deploy:local'",
"offline:cleanup": "cross-env SLS_STAGE=local sls remove --env local --stage local",
"update": "node internal/scripts/deploy-functions.js",
"deploy:local": "cross-env SLS_STAGE=local sls deploy --verbose --env local --stage local --force",
"deploy:dev": "cross-env SLS_STAGE=dev sls deploy --env dev --stage dev --aws-s3-accelerate",
"deploy:staging": "cross-env SLS_STAGE=staging sls deploy --env staging --stage staging --aws-s3-accelerate",
"deploy:prod": "cross-env SLS_STAGE=prod sls deploy --env prod --stage prod --aws-s3-accelerate",
"studio": "sls studio --stage dev --aws-s3-accelerate",
"lint": "eslint --fix ./{*,**/*}.js && yarn format",
"test": "cross-env IS_OFFLINE=1 SLS_STAGE=local jest",
"test:update": "cross-env IS_OFFLINE=1 SLS_STAGE=local jest --updateSnapshot",
"test:cov": "yarn run test --coverage",
"test:ci": "yarn run test:migrate && yarn run test:cov",
"test:migrate": "node_modules/.bin/shjs internal/scripts/migrate-db.js",
"test:dbinstall": "sls --stage local --env test dynamodb install",
"test:dbstart": "yarn test:dbinstall && sls --stage local --env test dynamodb start --migrate",
"test:watch": "yarn test:migrate && yarn test --watchAll --silent"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"axios-mock-adapter": "^1.18.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"concurrently": "^6.2.1",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-date-mock": "^1.0.8",
"prettier": "^2.1.1",
"serverless": "^2.0.0",
"serverless-deployment-bucket": "^1.1.2",
"serverless-domain-manager": "^4.2.0",
"serverless-dotenv-plugin": "^3.0.0",
"serverless-dynamodb-local": "^0.2.39",
"serverless-graph": "^0.3.2",
"serverless-localstack": "^0.4.27",
"serverless-newrelic-lambda-layers": "^1.1.8",
"serverless-offline": "^8.0.0",
"serverless-plugin-warmup": "^4.9.0",
"serverless-prune-plugin": "^1.4.2",
"serverless-sentry": "^2.0.2",
"serverless-stack-output": "^0.2.3",
"serverless-webpack": "^5.3.4",
"shelljs": "^0.8.3",
"thread-loader": "^3.0.0",
"webpack": "^4.44.1",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"amazon-dax-client": "^1.2.4",
"aws-sdk": "^2.751.0",
"axios": "^0.20.0",
"babel-core": "^7.0.0-bridge.0"
}
}