-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 KB
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
{
"name": "Brew",
"description": "MTG Deckbuilding Application",
"homepage": "https://github.com/spinaldash/mtgapp",
"engines": {
"node": "0.12.x"
},
"keywords": [
"gulp",
"jshint",
"jscs",
"server",
"hapi",
"node",
"mongo",
"mongoose",
"angular"
],
"author": "Michael J. Perez <blueavenger@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/coding-house-jan2015/angular-prototype.git"
},
"version": "1.0.0",
"scripts": {
"start": "node server/index.js",
"localhost": "MONGO_URL=mongodb://localhost/brew-prod PORT=3333 nodemon -e js,jade server/index.js",
"preinstall": "rm -rf node_modules public",
"postinstall": "bower install && gulp build",
"test": "MONGO_URL=mongodb://localhost/brew-test lab -l -v -m 5000 test/unit test/acceptance",
"mtgDB": "MONGO_URL=mongodb://localhost/brew-prod lab -l -v -m 5000 mtgdata/populate mtgdata/other",
"pm2Start": "MONGO_URL=mongodb://localhost/brew-prod PORT=3333 pm2 start server/index.js --name mtg"
},
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.1.18",
"babel": "^4.7.16",
"bcrypt": "^0.8.1",
"good": "^5.1.2",
"good-console": "^4.1.0",
"hapi": "^8.4.0",
"hapi-auth-cookie": "^2.0.0",
"joi": "^6.0.8",
"lodash": "^3.5.0",
"mongoose": "^3.8.25",
"request": "^2.53.0"
},
"devDependencies": {
"bower": "^1.3.12",
"chai": "^2.1.2",
"gulp": "^3.8.11",
"gulp-babel": "^4.0.0",
"gulp-concat": "^2.5.2",
"gulp-copy": "0.0.2",
"gulp-jade": "^1.0.0",
"gulp-jshint": "^1.9.4",
"gulp-less": "^3.0.1",
"gulp-sourcemaps": "^1.5.1",
"gulp-watch": "^4.2.0",
"jshint-stylish": "^1.0.1",
"lab": "^5.5.0"
}
}