-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "cfb-api",
"version": "1.0.0",
"description": "API for accessing data from the college football database (cfbdb)",
"engines": {
"node": ">=12.0.0"
},
"main": "server.js",
"scripts": {
"test": "mocha --parallel --timeout 100000"
},
"keywords": [
"football",
"college",
"cfb",
"ncaaf",
"data",
"statistics"
],
"author": "BlueSCar",
"license": "MIT",
"dependencies": {
"@sentry/node": "^6.2.5",
"amqplib": "^0.8.0",
"axios": "^0.21.4",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cookie-session": "^2.0.0-rc.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-brute": "^1.0.1",
"express-brute-pg": "^2.0.0",
"express-slow-down": "^1.4.0",
"express-ws": "^4.0.0",
"gaussian": "^1.1.0",
"helmet": "^4.2.0",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"pg": "^7.18.2",
"pg-promise": "^10.9.5",
"swagger-stats": "^0.95.17",
"swagger-ui-dist": "^3.30.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^8.3.2"
}
}