-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "actionable-notification-template",
"private": true,
"version": "2.0.0",
"description": "Sample Slack app that shows how incoming webhooks and interactive messages can be used to build a simple helpdesk integration",
"author": "Sachin Ranchod <[email protected]>",
"contributors": [
{
"name": "Ankur Oberoi",
"email": "[email protected]",
"url": "https://aoberoi.me"
},
{
"name": "Tomomi Imura",
"email": "[email protected]",
"url": "https://girliemac.com"
},
{
"name": "David Pichsenmeister",
"email": "[email protected]"
}
],
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"node-json-db": "^1.0.3",
"querystring": "^0.2.0",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}