-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "Comstat",
"version": "0.3.3",
"description": "Custom front-end to track Comcast data usage, allowing you to host a simple node.js server to share with roommates/family",
"repository": {
"type": "git",
"url": "https://github.com/Burry/Comstat.git"
},
"scripts": {
"prestart": "mongod --dbpath=/data/db --fork --logpath /dev/null",
"start": "node app.js",
"poststop": "mongo --eval 'db.shutdownServer()' > /dev/null",
"pretest": "mongod --dbpath=/data/db --fork --logpath /dev/null",
"test": "nodemon app.js",
"posttest": "mongo --eval 'db.shutdownServer()' > /dev/null"
},
"keywords": [
"comcast",
"data",
"usage"
],
"author": "Grant Burry",
"dependencies": {
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"moment": "^2.18.1",
"mongo": "^0.1.0",
"mongodb": "^2.2.26",
"morgan": "~1.8.1",
"pug": "~2.0.0-beta11",
"serve-favicon": "~2.4.2",
"socket.io": "^1.7.3"
},
"license": "MIT"
}