forked from heroku-examples/node-articles-nlp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "node-production",
"version": "0.0.0",
"description": "A minimum viable node app for production deployment",
"main": "index.js",
"scripts": {
"start": "nf start",
"reset": "script/reset",
"benchmark": "script/benchmark"
},
"author": "Hunter Loftis <[email protected]>",
"repository": "hunterloftis/node-production",
"license": "ISC",
"dependencies": {
"amqplib": "^0.2.1",
"body-parser": "^1.5.0",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.2.0",
"cookie-session": "^1.0.2",
"cors": "^2.8.4",
"express": "^4.9.7",
"foreman": "^0.4.2",
"jackrabbit": "^2.3.0",
"jade": "^1.5.0",
"lodash": "^2.4.1",
"logfmt": "^1.1.2",
"mongoose": "~3.8.13",
"mongoose-cache": "git://github.com/hunterloftis/mongoose-cache",
"mongoose-timestamp": "^0.3.0",
"morgan": "^1.2.0",
"node-horseman": "^3.2.0",
"node-uuid": "^1.4.1",
"phantomjscloud": "^3.0.0",
"promise": "^5.0.0",
"request": "^2.79.0",
"scrape-it": "^3.3.2",
"scraperjs": "^1.2.0",
"serve-favicon": "~2.0.1",
"summarize": "^1.5.0",
"superagent": "^0.18.2",
"throng": "^1.0.0"
},
"devDependencies": {},
"engines": {
"iojs": "1.0.x"
}
}