This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
{
"name": "travis-buddy",
"version": "1.0.0",
"engines": {
"node": "8.6.0"
},
"description": "",
"main": "index.js",
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"scripts": {
"start": "node http/server.js",
"watch": "nodemon -e js,html,css http/server.js",
"prod": "PORT=80 npm start",
"test": "mocha",
"test:inspect": "mocha --inspect",
"test:inspect-brk": "mocha --inspect --inspect-brk",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"local-test": "./test.sh",
"sort": "npm-sort",
"before-pr": "npm run sort && npm test && npm run lint",
"precommit": "lint-staged",
"prettier": "prettier '**/*.{js,ts,css,md}' --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^4.0.3",
"better-github-api": "^4.0.1",
"body-parser": "~1.18.2",
"bunyan": "^1.8.12",
"bunyan-prettystream": "^0.1.3",
"cookie-parser": "~1.4.3",
"defaults": "^1.0.3",
"ejs": "^2.5.7",
"express": "~4.16.0",
"ip": "^1.1.5",
"logdna": "^1.4.0",
"logzio-nodejs": "^0.4.10",
"mocha": "^5.0.3",
"mongoose": "^5.0.12",
"mustache": "^2.3.0",
"ordinal": "^1.0.2",
"paipu": "^1.0.9",
"request-promise-native": "^1.0.5",
"string-similarity": "^1.2.0",
"strip-ansi": "^4.0.0",
"supertest": "^3.0.0",
"uuid": "^3.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.1",
"nodemon": "^2.0.2",
"npm-sort": "0.0.4",
"prettier": "1.11.1"
}
}