-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "slack-approval-citadel",
"version": "1.1.0",
"description": "CI/CD approval with slack",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"format": "prettier --write --config ./.prettierrc './src/*.js'",
"eslint": "./node_modules/.bin/eslint ./src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shawnliujw/slack-approval.git"
},
"keywords": [
"CI/CD",
"Approval",
"Slack",
"Deployment",
"DevOps",
"Interactive",
"Process"
],
"author": "Shawn Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/shawnliujw/slack-approval/issues"
},
"homepage": "https://github.com/shawnliujw/slack-approval#readme",
"dependencies": {
"@slack/interactive-messages": "^1.3.0",
"@slack/web-api": "^5.2.1",
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"ioredis": "^4.14.1",
"lodash": "^4.17.15",
"moment": "^2.24.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"prettier": "^1.18.2"
}
}