-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "taskmaster_slack",
"version": "1.0.0",
"description": "Server for receiving calls from TaskMaster Slack App",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"lint": "eslint src --ext ts",
"tsc": "tsc",
"start": "nodemon dist"
},
"engines": {
"node": "11.6.0",
"npm": "6.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgakk/taskmaster_slack.git"
},
"keywords": [
"Slack",
"Task",
"Management",
"Team"
],
"author": "fgakk",
"license": "ISC",
"bugs": {
"url": "https://github.com/fgakk/taskmaster_slack/issues"
},
"homepage": "https://github.com/fgakk/taskmaster_slack#readme",
"dependencies": {
"@types/node": "^10.12.1",
"@types/pg": "^7.4.13",
"axios": "^0.18.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"node-schedule": "^1.3.0",
"nodemon": "1.18.4",
"pg": "^7.8.1",
"tsc": "^1.20150623.0",
"tsscmp": "^1.0.6",
"typescript": "^3.1.3"
},
"devDependencies": {
"eslint": "5.7.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-promise": "4.0.1",
"ts-node": "^7.0.1",
"tsc": "^1.20150623.0",
"typescript-eslint-parser": "20.0.0"
},
"heroku-run-build-script": true
}