-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.36 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
{
"name": "fantasy-hockey-notifier",
"version": "2.5.0",
"description": "Send notifications for transactions in an ESPN Fantasy Hockey league; designed to be used with AWS Lambda",
"scripts": {
"start": "npm run build && node -r dotenv/config .build/src/main.js",
"start-prebuilt": "node -r dotenv/config .build/src/main.js",
"build": "tsc",
"test": "echo \"No tests for now\" && exit 0",
"serverless-version": "serverless --version",
"deploy-dev": "serverless deploy --stage dev --conceal",
"deploy-prod": "serverless deploy --stage prod --conceal"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ftalburt/fantasy-hockey-notifier.git"
},
"author": "Forrest Talburt",
"license": "MIT",
"bugs": {
"url": "https://github.com/ftalburt/fantasy-hockey-notifier/issues"
},
"homepage": "https://github.com/ftalburt/fantasy-hockey-notifier#readme",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.48.0",
"@aws-sdk/client-sns": "^3.48.0",
"dotenv": "^14.3.2",
"source-map-support": "^0.5.21",
"superagent": "^7.1.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/node": "^17.0.13",
"@types/request-promise-native": "^1.0.18",
"@types/superagent": "^4.1.15",
"serverless": "^3.0.0",
"serverless-plugin-typescript": "^2.0.0",
"typescript": "^4.5.5"
}
}