-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "tx-chef",
"version": "3.0.0",
"description": "Tamedia daily menus in English and German, delivered straight to Slack via AWS Lambda",
"license": "MIT",
"repository": "https://github.com/tamediadigital/tx-chef",
"author": {
"name": "Michael Wuergler",
"email": "[email protected]",
"url": "https://github.com/radiovisual"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "npm run lint && jest",
"deploy:dev": "npm run test && npx serverless deploy --stage dev",
"deploy:prod": "npm run test && npx serverless deploy --stage prod",
"logs": "npx serverless logs --function run --tail",
"invoke:local:dev": "ENVIRONMENT=local DEBUG=true SLS_DEBUG=* npx serverless invoke local --function run --stage dev",
"invoke:local:prod": "ENVIRONMENT=local DEBUG=true SLS_DEBUG=* npx serverless invoke local --function run --stage prod",
"lint": "eslint . --ignore-path .gitignore --ext .js",
"fix": "eslint . --ext .js --fix"
},
"files": [
"index.js",
"handler.js",
"config",
"helpers"
],
"keywords": [
"werdino",
"tamedia",
"english",
"german",
"serverless",
"lambda"
],
"dependencies": {
"aws-sdk": "^2.587.0",
"axios": "0.27.2",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"fetch-everywhere": "^1.0.5",
"selective-whitespace": "^1.0.4",
"simple-zeropad": "^1.0.5",
"superb": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.1.0",
"jest": "^24.5.0",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.1",
"serverless": "^3.22.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}