-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "devjira-project-status",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"debug": "node --inspect --debug-brk dist/index.js",
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/node": "7.0.22",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"googleapis": "^28.0.1",
"jira-client": "^6.4.1",
"lodash": "^4.17.5",
"minimist": "^1.2.0",
"moment": "^2.22.0",
"moment-timezone": "^0.5.14",
"node-schedule": "^1.3.0",
"nodemailer": "^4.6.4",
"nodemon": "1.11.0",
"request": "^2.85.0"
},
"devDependencies": {
"@types/mocha": "2.2.41",
"@types/node": "7.0.22",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "3.4.2",
"supertest": "3.0.0",
"tsc": "1.20150623.0",
"typescript": "2.3.3",
"typescript-eslint-parser": "3.0.0"
}
}