-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 2.54 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "RPL",
"version": "0.1.0",
"description": "Riviera Premier League",
"homepage": "http://www.rivierapremierleague.herokuapp.com",
"bugs": {
"url": "https://github.com/IEEECS-VIT/RPL/issues",
"email": "[email protected]"
},
"private": true,
"main": "./bin/www",
"scripts": {
"sim": "node bin/simulate",
"seed": "node utils/seed.js",
"schedule": "node utils/schedule.js",
"scrape": "node utils/commentary/scrape.js",
"start": "node node_modules/.bin/forever bin/www",
"postinstall": "node node_modules/.bin/bower install",
"stop": "node node_modules/.bin/forever stop ./bin/www",
"test": "node node_modules/.bin/mocha tests --recursive",
"restart": "node node_modules/.bin/forever restart ./bin/www"
},
"precommit": {
"run": [
"test"
],
"silent": false,
"colors": true
},
"cacheDirectories": [
"public/bower",
"node_modules"
],
"contributors": [
[
{
"name": "Aneesh Neelam",
"email": "[email protected]"
},
{
"name": "Kashish Singhal",
"email": "[email protected]"
},
{
"name": "Kunal Nagpal",
"email": "[email protected]"
},
{
"name": "Ayush Agarwal",
"email": "[email protected]"
},
{
"name": "Shivam Mathur",
"email": "[email protected]"
},
{
"name": "Shubham Sagar",
"email": "[email protected]"
}
]
],
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.0",
"bower": "^1.7.9",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"debug": "^2.2.0",
"ejs": "^2.4.1",
"emailjs": "^1.0.4",
"express": "^4.13.4",
"express-session": "^1.13.0",
"forever": "^0.15.1",
"helmet": "^1.3.0",
"mongodb": "^2.1.16",
"morgan": "^1.7.0",
"newrelic": "^1.26.2",
"node-logentries": "^0.1.4",
"passport": "^0.3.2",
"passport-facebook": "^2.1.0",
"passport-google-oauth": "^1.0.0",
"serve-favicon": "^2.3.0"
},
"optionalDependencies": {
"bcrypt": "~0.8.5"
},
"devDependencies": {
"dotenv": "^2.0.0",
"mocha": "^2.4.5",
"yuicompressor": "^2.4.8"
},
"repository": {
"type": "git",
"url": "https://github.com/IEEECS-VIT/RPL.git"
},
"license": "GPL-3.0+",
"licenses": [
{
"type": "GPL-3.0+",
"url": "https://www.gnu.org/licenses/gpl-3.0-standalone.html"
}
],
"engines": {
"node": "5.x"
}
}