habitica-self-host/package.json

98 lines
3 KiB
JSON
Raw Normal View History

2012-04-27 02:03:01 +00:00
{
2012-07-10 19:29:24 +00:00
"name": "habitrpg",
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
"version": "0.0.0-152",
2013-09-07 10:47:44 +00:00
"main": "./src/server.js",
2012-04-27 02:03:01 +00:00
"dependencies": {
2014-05-11 14:55:12 +00:00
"habitrpg-shared": "git://github.com/HabitRPG/habitrpg-shared#develop",
2013-02-15 02:43:41 +00:00
"connect-mongo": "*",
"express": "3.5.x",
2012-11-08 05:19:15 +00:00
"gzippo": "*",
"guid": "*",
"moment": "~2.4.0",
2012-09-24 20:19:27 +00:00
"stripe": "*",
"coffee-script": "1.6.x",
"nconf": "*",
2013-02-18 21:09:41 +00:00
"icalendar": "git://github.com/lefnire/node-icalendar#master",
"resolve": "~0.2.3",
2013-11-02 08:52:48 +00:00
"lodash": "~2.2.1",
"async": "~0.2.9",
2013-08-24 22:57:08 +00:00
"optimist": "~0.5.2",
2013-08-25 01:06:37 +00:00
"stylus": "~0.37.0",
2013-09-06 17:19:43 +00:00
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.4",
2013-09-06 19:39:18 +00:00
"grunt-contrib-stylus": "~0.8.0",
2013-09-06 17:19:43 +00:00
"grunt-contrib-clean": "~0.5.0",
2013-09-06 19:39:18 +00:00
"grunt-contrib-cssmin": "~0.6.1",
2013-09-10 12:40:00 +00:00
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-copy": "~0.4.1",
"grunt-hashres": "~0.3.2",
2013-09-07 10:47:44 +00:00
"grunt-nodemon": "~0.1.1",
"grunt-concurrent": "~0.3.1",
"bower": "~1.3.8",
2013-08-26 03:04:51 +00:00
"nib": "~1.0.1",
"jade": "~0.35.0",
2014-05-05 10:22:34 +00:00
"validator": "~3.11.2",
"nodemailer": "~0.5.2",
"grunt-cli": "~0.1.9",
"express-csv": "~0.6.0",
"pretty-data": "git://github.com/vkiryukhin/pretty-data#master",
"js2xmlparser": "~0.1.2",
"mongoose": "3.8.5",
"swagger-node-express": "git://github.com/lefnire/swagger-node-express#habitrpg",
"passport": "~0.1.18",
2014-01-30 17:55:28 +00:00
"passport-facebook": "~1.0.2",
2014-08-29 23:48:09 +00:00
"newrelic": "~1.10.3",
"connect-ratelimit": "0.0.6",
"winston": "~0.7.2",
"winston-mail": "~0.2.7",
"winston-newrelic": "~0.1.4",
"domain-middleware": "~0.1.0",
"universal-analytics": "~0.3.2",
"paypal-express-checkout": "git://github.com/HabitRPG/node-paypal-express-checkout#habitrpg",
"paypal-recurring": "git://github.com/jaybryant/paypal-recurring#656b496f43440893c984700191666a5c5c535dca",
2014-04-16 17:33:03 +00:00
"paypal-ipn": "~1.0.1",
"coupon-code": "~0.3.0",
"mongoose-id-autoinc": "~2013.7.14-4"
2012-04-27 02:03:01 +00:00
},
"private": true,
"subdomain": "habitrpg",
"domains": [
"habitrpg.com",
"www.habitrpg.com"
],
"engines": {
2013-08-26 23:09:14 +00:00
"node": "0.10.x",
"npm": "1.2.x"
},
"scripts": {
"test": "./test/run_tests.sh",
"start": "grunt run:dev",
"postinstall": "./node_modules/bower/bin/bower --config.interactive=false install -f"
},
"devDependencies": {
2013-12-25 19:17:05 +00:00
"protractor": "~0.14.0",
"grunt-karma": "~0.6.2",
"karma-script-launcher": "~0.1.0",
"karma-chrome-launcher": "~0.1.0",
"karma-firefox-launcher": "~0.1.0",
"karma-html2js-preprocessor": "~0.1.0",
"karma-coffee-preprocessor": "~0.1.0",
"karma-jasmine": "~0.1.3",
"karma-requirejs": "~0.2.0",
"karma-phantomjs-launcher": "~0.1.0",
"karma": "~0.10.2",
"karma-ng-html2js-preprocessor": "~0.1.0",
"karma-chai-plugins": "~0.1.0",
"mocha": "~1.12.1",
"karma-mocha": "0.1.3",
"csv": "~0.3.6",
"mongoskin": "~0.6.1",
"expect.js": "~0.2.0",
"superagent": "~0.15.7",
"superagent-defaults": "~0.1.5",
"git-changelog": "colegleason/git-changelog",
"deep-diff": "~0.1.4"
}
2012-11-08 05:19:15 +00:00
}