-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.66 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
66
67
68
69
70
71
72
{
"name": "bc-api",
"description": "The API for bracket.club.",
"version": "1.0.7",
"author": {
"name": "Luke Karrys",
"email": "[email protected]",
"url": "http://lukekarrys.com"
},
"bugs": {
"url": "https://github.com/bracketclub/api/issues"
},
"dependencies": {
"boom": "^7.0.0",
"dotenv": "^4.0.0",
"getconfig": "^4.5.0",
"good": "^7.3.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"hapi": "^16.7.0",
"hoek": "^5.0.0",
"joi": "^13.0.1",
"lodash": "^4.17.4",
"ms": "^2.0.0",
"pg": "^8.5.1",
"pg-pubsub": "^0.6.1",
"pgboom": "^0.1.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mysticatea": "^4.2.4",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^4.3.1",
"git-validate": "^2.2.2",
"mkdirp": "^0.5.1",
"prettier": "^2.2.1",
"request": "^2.83.0",
"yargs": "^10.0.3"
},
"engines": {
"node": "^14.15.5",
"npm": "^6.14.11"
},
"homepage": "https://github.com/bracketclub/api",
"keywords": [
"bracket",
"bracketclub",
"ncaa",
"tweetyourbracket"
],
"license": "UNLICENSED",
"main": "index.js",
"pre-commit": [
"lint",
"validate"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bracketclub/api.git"
},
"scripts": {
"export": "node bin/export",
"integration": "NODE_ENV=test npm start",
"lint": "prettier . -l && eslint .",
"start": "node index",
"test": "npm run lint && npm run validate",
"validate": "npm ls"
}
}