forked from techmatters/serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.93 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
80
81
82
{
"name": "serverless",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "jest --verbose",
"start": "npx tsc && twilio-run --env",
"start:local": "npx tsc && twilio-run --env --port 3030",
"watch": "npx tsc && twilio-run start --live",
"swagger": "redoc-cli build -o assets/swagger.html swagger.yaml",
"lint": "eslint --ext ts .",
"tr": "twilio-run",
"tr:deploy": "npx tsc && twilio-run deploy --force",
"license:add": "docker run --rm -v ${PWD}:/src ghcr.io/google/addlicense -c \"Technology Matters\" -y \"2021-2023\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" -f license-header.tpl .",
"license:check": "docker run --rm -v ${PWD}:/src ghcr.io/google/addlicense -check -c \"Technology Matters\" -y \"2021-2023\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" -f license-header.tpl .",
"license:add:windows": "docker run --rm -v %cd%:/src ghcr.io/google/addlicense -c \"Technology Matters\" -y \"2021-2023\" -ignore \".idea/**\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" -f license-header.tpl .",
"license:check:windows": "docker run --rm -v %cd%:/src ghcr.io/google/addlicense -check -c \"Technology Matters\" -y \"2021-2023\" -ignore \".idea/**\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" **/build-f license-header.tpl .",
"license:add:windows:local": "addlicense -c \"Technology Matters\" -y \"2021-2023\" -ignore .idea\\\\** -ignore node_modules\\\\** -ignore \"**\\\\node_modules\\\\**\" -ignore \"**\\\\dist\\\\**\" -ignore \"**\\\\coverage\\\\**\" -ignore cdk.out\\\\** -f license-header.tpl .",
"license:check:windows:local": "addlicense -check -c \"Technology Matters\" -y \"2021-2023\" -ignore .idea\\\\** -ignore node_modules\\\\** -ignore \"**\\\\node_modules\\\\**\" -ignore \"**\\\\dist\\\\**\" -ignore \"**\\\\coverage\\\\**\" -ignore cdk.out\\\\** -f license-header.tpl .",
"ssm:local": "docker run --rm -v ~/.aws:/home/aws/.aws -e AWS_DEFAULT_REGION -e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY interrobangc/awscli2 ssm get-parameter --name \"/local/serverless/.env\" --with-decryption --query \"Parameter.Value\" --output text > .env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tech-matters/serverless.git"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.184",
"@types/node-fetch": "^2.6.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/twit": "^2.2.30",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^29.7.0",
"jest-each": "^29.7.0",
"jest-mock-extended": "^3.0.1",
"jsonwebtoken": "^9.0.2",
"mockdate": "^3.0.5",
"prettier": "^2.7.1",
"redoc-cli": "^0.13.19",
"ts-jest": "^29.1.4",
"twilio-run": "^3.4.3",
"typescript": "^4.7.4"
},
"engines": {
"node": "^16.0"
},
"dependencies": {
"@tech-matters/serverless-helpers": "3.0.5",
"@twilio-labs/serverless-runtime-types": "2.2.3",
"@twilio/runtime-handler": "1.2.4",
"aws-sdk": "2.1366.0",
"axios": "0.28.0",
"form-data": "^4.0.0",
"lodash": "4.17.21",
"moment-timezone": "0.5.37",
"node-fetch": "^2.7.0",
"swagger-ui-express": "4.5.0",
"twilio": "3.81.0",
"twilio-flex-token-validator": "1.5.6",
"twit": "2.2.11",
"type-fest": "2.19.0",
"uuid": "8.3.2"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"endOfLine": "auto"
}
}