freeCodeCamp/package.json

149 lines
4.8 KiB
JSON
Raw Normal View History

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