forked from Hylozoic/hylo-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.92 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
{
"name": "hylo-node",
"private": true,
"version": "0.1.0",
"engines": {
"node": "0.12.2",
"npm": "2.7.5"
},
"description": "a Sails application",
"keywords": [],
"devDependencies": {
"chai": "latest",
"chai-as-promised": "^5.0.0",
"chai-spies": "^0.5.1",
"istanbul-harmony": "^0.3.12",
"mocha": "^2.2.4",
"sqlite3": "^3.0.2"
},
"dependencies": {
"analytics-node": "^1.2.0",
"async": "^0.9.0",
"bcrypt": "^0.8.2",
"bluebird": "^2.3.11",
"bookshelf": "^0.7.9",
"cheerio": "0.18.0",
"colors": "^1.0.3",
"connect-redis": "1.4.5",
"cookie": "0.1.2",
"dotenv": "^0.4.0",
"ejs": "~0.8.4",
"email-addresses": "^2.0.1",
"grunt": "0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-less": "0.11.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-sails-linker": "~0.9.5",
"grunt-sync": "~0.0.4",
"heredoc": "^1.3.0",
"html-truncate": "tildedave/nodejs-html-truncate#fix_end_truncation_behavior",
"include-all": "~0.1.3",
"knex": "^0.7.3",
"kue": "^0.9.0",
"kue-ui": "^0.1.0",
"lodash": "3.7.0",
"lru-cache": "^2.5.0",
"mailcomposer": "^0.2.12",
"mailgun": "^0.5.0",
"marked": "^0.3.3",
"minimist": "^1.1.0",
"mock-kue": "schinkowitch/mock-kue",
"moment": "^2.9.0",
"moment-timezone": "^0.3.0",
"newrelic": "^1.15.0",
"node-uuid": "^1.4.1",
"parse-redis-url": "0.0.1",
"passport": "^0.2.1",
"passport-facebook": "^2.0.0",
"passport-google-oauth": "^0.1.5",
"passport-linkedin-oauth2": "^1.2.1",
"pg": "^3.6.2",
"promirepl": "^1.0.1",
"rc": "~0.5.0",
"request": "^2.51.0",
"rollbar": "^0.5.3",
"root-path": "^0.2.0",
"sails": "~0.11.0",
"sanitize-html": "^1.5.0",
"sendwithus": "^2.8.0",
"time": "^0.11.2",
"validator": "^3.22.1",
"xml2js": "^0.4.4"
},
"scripts": {
"start": "node --harmony app.js",
"console": "node --harmony console.js",
"cron": "node --harmony cron.js",
"worker": "node --harmony worker.js",
"migrate": "node --harmony ./node_modules/.bin/knex migrate:latest",
"rollback": "node --harmony ./node_modules/.bin/knex migrate:rollback",
"migrate-make": "node --harmony ./node_modules/.bin/knex migrate:make",
"debug": "node-debug app.js",
"dev": "nf -j Procfile.dev -p 1337 start -t 1000",
"test": "./node_modules/.bin/mocha --harmony test/**/*.js",
"test-coverage": "node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports -R spec test/**/*.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/Hylozoic/hylo-node.git"
},
"author": "Lawrence Wang <[email protected]>",
"license": ""
}