-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "github-helpscout-collector",
"private": true,
"description": "Push GitHub issues to HelpScout",
"main": "dist/main.js",
"author": "Vaillant Samuel <[email protected]>",
"license": "MIT",
"scripts": {
"start": "micro -l tcp://0.0.0.0:$PORT",
"dev": "micro-dev",
"clean": "rm -rf dist",
"build": "yarn tsc",
"test": "jest",
"lint": "yarn tslint --project .",
"heroku-postbuild": "yarn clean && yarn build"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/inquirer": "0.0.43",
"@types/jest": "23.3.12",
"@types/marked": "0.6.0",
"@types/micro": "7.3.3",
"@types/nock": "9.3.0",
"@types/test-listen": "1.1.0",
"chalk": "2.4.2",
"inquirer": "6.2.2",
"jest": "23.6.0",
"jest-watch-typeahead": "0.2.0",
"micro-dev": "3.0.0",
"nock": "10.0.6",
"prettier": "1.15.3",
"test-listen": "1.1.0",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.2.2"
},
"dependencies": {
"axios": "0.18.1",
"marked": "0.6.1",
"micro": "9.3.3"
}
}