2013-11-13 12:32:22 -05:00
|
|
|
{
|
2014-12-26 00:03:40 -08:00
|
|
|
"name": "freecodecamp",
|
|
|
|
"version": "0.1.0",
|
2014-02-26 17:08:33 +05:30
|
|
|
"repository": {
|
2014-02-27 11:18:08 -05:00
|
|
|
"type": "git",
|
2014-12-26 00:03:40 -08:00
|
|
|
"url": "https://github.com/freecodecamp/freecodecamp.git"
|
2014-02-26 17:08:33 +05:30
|
|
|
},
|
2014-02-10 13:43:36 -05:00
|
|
|
"scripts": {
|
2016-01-14 16:54:33 -08:00
|
|
|
"only-once": "npm run create-rev && echo '\n\nseeding database\n\n' && node seed && echo '\n\nSeeding Completed\n\n'",
|
2015-12-07 23:15:50 -08:00
|
|
|
"create-rev": "node -e \"console.log('\\n\\ncreating manifest\\n\\n'); require('fs').writeFileSync('server/rev-manifest.json', '{}');\"",
|
2015-11-22 20:26:44 -08:00
|
|
|
"build": "NODE_ENV=production gulp build -p",
|
2015-06-29 12:01:56 -07:00
|
|
|
"start": "babel-node server/server.js",
|
2015-11-11 13:29:33 -08:00
|
|
|
"prestart-production": "bower cache clean && bower install && gulp build -p",
|
2015-07-24 22:22:40 -07:00
|
|
|
"start-production": "node pm2Start",
|
2015-11-03 22:06:43 -08:00
|
|
|
"lint": "npm run lint-js && npm run lint-json",
|
2015-12-07 13:10:33 -08:00
|
|
|
"lint-challenges": "jsonlint -q seed/challenges/**/*.json",
|
2015-11-03 22:06:43 -08:00
|
|
|
"lint-server": "jsonlint -q server/*.json",
|
|
|
|
"lint-resources": "jsonlint -q server/resources/*.json",
|
|
|
|
"lint-utils": "jsonlint -q server/utils/*.json",
|
2015-11-04 15:27:24 -08:00
|
|
|
"lint-js": "eslint --ext=.js,.jsx server/ common/ config/ client/",
|
2016-01-26 19:54:33 +04:00
|
|
|
"lint-json": "npm run lint-server && npm run lint-challenges && npm run lint-resources && npm run lint-utils",
|
2016-01-10 16:13:20 -08:00
|
|
|
"test-challenges": "babel-node seed/test-challenges.js | tap-spec",
|
2015-11-03 22:06:43 -08:00
|
|
|
"pretest": "npm run lint",
|
2015-11-01 17:20:03 -08:00
|
|
|
"test": "npm run test-challenges"
|
2014-02-10 13:43:36 -05:00
|
|
|
},
|
2015-07-28 19:49:12 -07:00
|
|
|
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
|
2013-11-13 18:09:22 -05:00
|
|
|
"dependencies": {
|
2015-11-09 23:05:43 -08:00
|
|
|
"accepts": "^1.3.0",
|
2016-01-30 00:13:41 -08:00
|
|
|
"adler32": "~0.1.7",
|
2015-11-04 23:16:47 -08:00
|
|
|
"async": "^1.5.0",
|
2016-01-06 09:33:55 -08:00
|
|
|
"babel-cli": "^6.3.17",
|
|
|
|
"babel-core": "^6.3.26",
|
2016-07-08 15:58:45 -07:00
|
|
|
"babel-eslint": "6.1.0",
|
2016-01-06 09:33:55 -08:00
|
|
|
"babel-loader": "^6.2.1",
|
2016-05-16 17:43:04 -07:00
|
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
2016-01-06 09:33:55 -08:00
|
|
|
"babel-preset-es2015": "^6.3.13",
|
|
|
|
"babel-preset-react": "^6.3.13",
|
|
|
|
"babel-preset-stage-0": "^6.3.13",
|
2016-01-30 00:13:41 -08:00
|
|
|
"babel-register": "^6.3.0",
|
2015-07-23 13:40:08 -07:00
|
|
|
"body-parser": "^1.13.2",
|
2016-02-01 03:12:12 -08:00
|
|
|
"cheerio": "~0.20.0",
|
2015-06-29 09:50:25 -07:00
|
|
|
"classnames": "^2.1.2",
|
2015-11-09 23:05:43 -08:00
|
|
|
"compression": "^1.6.0",
|
2016-05-16 18:00:16 -07:00
|
|
|
"connect-mongo": "~1.2.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"cookie-parser": "^1.4.0",
|
2016-05-02 17:22:56 -07:00
|
|
|
"csurf": "^1.8.3",
|
2015-11-09 23:05:43 -08:00
|
|
|
"debug": "^2.2.0",
|
|
|
|
"dedent": "~0.6.0",
|
2016-01-20 16:50:42 -08:00
|
|
|
"dotenv": "^2.0.0",
|
2015-12-01 14:50:45 -08:00
|
|
|
"emmet-codemirror": "^1.2.5",
|
2015-11-09 23:05:43 -08:00
|
|
|
"errorhandler": "^1.4.2",
|
|
|
|
"es6-map": "~0.1.1",
|
2016-03-26 12:08:05 -04:00
|
|
|
"eslint": "^2.2.0",
|
2016-05-09 16:15:38 -07:00
|
|
|
"eslint-plugin-react": "^5.1.1",
|
2015-11-09 23:05:43 -08:00
|
|
|
"express": "^4.13.3",
|
2015-05-04 17:37:29 -04:00
|
|
|
"express-flash": "~0.0.2",
|
2015-11-09 23:05:43 -08:00
|
|
|
"express-session": "^1.12.1",
|
2015-06-29 09:50:25 -07:00
|
|
|
"express-state": "^1.2.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"express-validator": "^2.18.0",
|
|
|
|
"fetchr": "~0.5.12",
|
2016-05-03 11:32:28 -07:00
|
|
|
"frameguard": "^2.0.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"gulp": "^3.9.0",
|
2016-01-06 09:33:55 -08:00
|
|
|
"gulp-babel": "^6.1.1",
|
2015-11-10 18:27:58 -08:00
|
|
|
"gulp-concat": "^2.6.0",
|
2016-03-02 20:54:14 -08:00
|
|
|
"gulp-eslint": "^2.0.0",
|
2015-10-20 23:25:32 -07:00
|
|
|
"gulp-jsonlint": "^1.1.0",
|
2015-10-30 14:00:07 -07:00
|
|
|
"gulp-less": "^3.0.3",
|
2015-10-20 23:25:32 -07:00
|
|
|
"gulp-nodemon": "^2.0.3",
|
|
|
|
"gulp-notify": "^2.2.0",
|
|
|
|
"gulp-plumber": "^1.0.1",
|
2015-08-28 15:54:40 -07:00
|
|
|
"gulp-reduce-file": "0.0.1",
|
2016-02-10 02:00:20 -08:00
|
|
|
"gulp-rev": "^7.0.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"gulp-rev-replace": "~0.4.2",
|
2015-11-22 20:26:44 -08:00
|
|
|
"gulp-uglify": "^1.5.1",
|
2015-08-31 09:20:55 -07:00
|
|
|
"gulp-util": "^3.0.6",
|
2016-04-29 11:27:51 -07:00
|
|
|
"helmet": "^2.0.0",
|
2016-01-12 21:45:15 -08:00
|
|
|
"helmet-csp": "^1.0.3",
|
2016-03-02 19:45:54 -08:00
|
|
|
"history": "^2.0.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"jade": "^1.11.0",
|
|
|
|
"json-loader": "~0.5.2",
|
|
|
|
"less": "^2.5.1",
|
2016-01-29 08:41:45 -08:00
|
|
|
"lodash": "^4.1.0",
|
2015-10-11 15:57:49 -07:00
|
|
|
"loopback": "^2.22.0",
|
|
|
|
"loopback-boot": "^2.13.0",
|
2016-01-12 03:27:35 -08:00
|
|
|
"loopback-component-passport": "^2.0.0",
|
2016-05-16 18:10:27 -07:00
|
|
|
"loopback-connector-mongodb": "1.15.2",
|
2015-11-10 18:27:58 -08:00
|
|
|
"merge-stream": "^1.0.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"method-override": "^2.3.0",
|
|
|
|
"moment": "^2.10.2",
|
2016-01-19 21:11:20 -05:00
|
|
|
"moment-timezone": "^0.5.0",
|
2015-06-04 12:03:53 -07:00
|
|
|
"mongodb": "^2.0.33",
|
2015-11-09 23:05:43 -08:00
|
|
|
"morgan": "^1.6.1",
|
2015-06-12 15:27:51 -07:00
|
|
|
"node-uuid": "^1.4.3",
|
2016-02-01 05:49:50 -08:00
|
|
|
"nodemailer": "^2.1.0",
|
2016-04-14 21:02:53 -07:00
|
|
|
"nodemailer-ses-transport": "^1.3.0",
|
2015-10-30 14:00:07 -07:00
|
|
|
"normalize-url": "^1.3.1",
|
2016-01-27 11:34:44 -08:00
|
|
|
"normalizr": "^2.0.0",
|
2015-11-02 14:17:50 -08:00
|
|
|
"object.assign": "^4.0.3",
|
2016-02-11 22:33:54 -08:00
|
|
|
"passport": "^0.2.1",
|
2015-06-04 12:03:53 -07:00
|
|
|
"passport-facebook": "^2.0.0",
|
2015-11-02 14:17:50 -08:00
|
|
|
"passport-github": "^1.0.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"passport-google-oauth2": "~0.1.6",
|
2015-06-04 12:03:53 -07:00
|
|
|
"passport-linkedin-oauth2": "^1.2.1",
|
|
|
|
"passport-local": "^1.0.0",
|
|
|
|
"passport-oauth": "^1.0.0",
|
|
|
|
"passport-twitter": "^1.0.3",
|
2016-05-23 04:52:39 -07:00
|
|
|
"pmx": "~0.6.2",
|
2016-05-03 22:12:59 -07:00
|
|
|
"react": "^15.0.2",
|
2016-05-16 15:19:14 -07:00
|
|
|
"react-bootstrap": "~0.29.4",
|
2016-05-03 22:12:59 -07:00
|
|
|
"react-dom": "^15.0.2",
|
2016-01-30 20:30:12 -08:00
|
|
|
"react-motion": "~0.4.2",
|
2016-01-27 11:34:44 -08:00
|
|
|
"react-pure-render": "^1.0.2",
|
|
|
|
"react-redux": "^4.0.6",
|
2016-03-02 19:45:54 -08:00
|
|
|
"react-router": "^2.0.0",
|
|
|
|
"react-router-bootstrap": "~0.20.1",
|
2016-01-27 11:34:44 -08:00
|
|
|
"react-router-redux": "^2.1.0",
|
2016-03-26 12:08:05 -04:00
|
|
|
"react-toastr": "^2.4.0",
|
2016-05-04 10:30:47 -07:00
|
|
|
"react-youtube": "^6.1.0",
|
2016-01-27 11:34:44 -08:00
|
|
|
"redux": "^3.0.5",
|
|
|
|
"redux-actions": "^0.9.1",
|
2016-05-03 11:44:04 -07:00
|
|
|
"redux-form": "^5.2.3",
|
2015-11-09 23:05:43 -08:00
|
|
|
"request": "^2.65.0",
|
2016-01-27 11:34:44 -08:00
|
|
|
"reselect": "^2.0.2",
|
2015-09-10 19:01:12 -07:00
|
|
|
"rev-del": "^1.0.5",
|
2015-10-11 15:57:49 -07:00
|
|
|
"rx": "^4.0.0",
|
2015-11-09 23:05:43 -08:00
|
|
|
"sanitize-html": "^1.11.1",
|
2015-08-28 15:54:40 -07:00
|
|
|
"sort-keys": "^1.1.1",
|
2015-12-22 19:28:07 -08:00
|
|
|
"stampit": "^2.1.1",
|
2015-09-24 20:28:04 -07:00
|
|
|
"store": "https://github.com/berkeleytrue/store.js.git#feature/noop-server",
|
2015-10-30 16:58:49 -07:00
|
|
|
"url-regex": "^3.0.0",
|
2016-02-22 06:51:57 -08:00
|
|
|
"validator": "^5.0.0",
|
2015-06-29 09:50:25 -07:00
|
|
|
"webpack": "^1.9.12",
|
2015-12-14 10:47:37 -08:00
|
|
|
"webpack-stream": "^3.1.0",
|
2015-11-22 20:26:44 -08:00
|
|
|
"xss-filters": "^1.2.6",
|
2016-02-15 08:46:40 -08:00
|
|
|
"yargs": "^4.1.0"
|
2014-02-24 22:58:35 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-11-09 23:05:43 -08:00
|
|
|
"browser-sync": "^2.9.12",
|
2015-11-30 14:27:39 -08:00
|
|
|
"gulp-sourcemaps": "^1.6.0",
|
2016-05-17 16:44:35 -07:00
|
|
|
"gulp-tape": "0.0.9",
|
2015-11-01 17:20:03 -08:00
|
|
|
"jsonlint": "^1.6.2",
|
2015-11-05 16:41:19 -08:00
|
|
|
"loopback-component-explorer": "^2.1.1",
|
2015-06-11 15:18:37 -04:00
|
|
|
"loopback-testing": "^1.1.0",
|
2016-02-09 09:10:18 -08:00
|
|
|
"sinon": "^1.17.3",
|
2015-12-10 14:52:09 -08:00
|
|
|
"tap-spec": "^4.1.1",
|
2015-11-06 23:17:41 -08:00
|
|
|
"tape": "^4.2.2"
|
2013-11-26 23:54:36 -05:00
|
|
|
}
|
2013-11-26 23:15:13 -05:00
|
|
|
}
|