-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 926 Bytes
/
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
{
"name": "slack-skb",
"version": "1.0.0",
"description": "Simple point tracking",
"main": "src/index.js",
"scripts": {
"format": "npx prettier --write .",
"start": "node .",
"drun": "docker run -p 12345:3000 -d slack_skb",
"dbuild": "docker build -t slack_skb .",
"dtag": "docker tag slack_skb:latest $SKB_ECR_URL/slack_skb:latest",
"dpush": "docker push $SKB_ECR_URL/slack_skb:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nstanard/slack-skb.git"
},
"author": "Neal Stanard",
"license": "ISC",
"bugs": {
"url": "https://github.com/nstanard/slack-skb/issues"
},
"homepage": "https://github.com/nstanard/slack-skb#readme",
"dependencies": {
"@slack/bolt": "^3.9.0",
"aws-sdk": "^2.1069.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
}
}