Files
freeCodeCamp/seed/package.json
Stuart Taylor 0bb4fbfcea Fix/react versions (#17236)
<!-- freeCodeCamp Pull Request Template -->

<!-- IMPORTANT Please review https://github.com/freeCodeCamp/freeCodeCamp/blob/staging/CONTRIBUTING.md for detailed contributing guidelines -->
<!-- Help with PRs can be found at https://gitter.im/FreeCodeCamp/Contributors -->
<!-- Make sure that your PR is not a duplicate -->

#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply. -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [x] Your pull request targets the `staging` branch of freeCodeCamp.
- [x] Branch starts with either `fix/`, `feature/`, or `translate/` (e.g. `fix/signin-issue`)
- [ ] You have only one commit (if not, [squash](http://forum.freecodecamp.org/t/how-to-squash-multiple-commits-into-one-with-git/13231) them into one commit).
- [x] All new and existing tests pass the command `npm test`. Use `git commit --amend` to amend any fixes.

#### Type of Change
<!-- What type of change does your code introduce? After creating the PR, tick the checkboxes that apply. -->
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
- [ ] Add new translation (feature adding new translations)

#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply. -->
<!-- If you're unsure about any of these, don't hesitate to ask in the Contributors room linked above. We're here to help! -->
- [x] Tested changes locally.
- [x] Addressed currently open issue (replace XXXXX with an issue no in next line)

Closes #17215

#### Description
<!-- Describe your changes in detail -->
2018-05-25 17:27:15 +05:30

60 lines
1.5 KiB
JSON

{
"name": "@freecodecamp/curriculum",
"version": "1.0.2",
"description": "freeCodeCamp's curriculum seed files",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:js && npm run build:json",
"build:json": "gulp json:minify",
"build:js": "gulp babel",
"prepack": "npm run build",
"unpack": "babel-node ./unpack.js",
"repack": "babel-node ./repack.js",
"test": "babel-node ./test-challenges.js | tap-spec",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freecodecamp/freecodecamp.git"
},
"keywords": [
"freecodecamp",
"curriculum",
"challenges",
"javascript",
"interview",
"json"
],
"author": "freeCodeCamp <team@freecodecamp.org>",
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
"bugs": {
"url": "https://github.com/freecodecamp/freecodecamp/issues"
},
"homepage": "https://github.com/freecodecamp/freecodecamp#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-standalone": "^6.26.0",
"browserify": "^16.2.2",
"fs-extra": "^6.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-json-minify": "^1.2.2",
"gulp-rename": "^1.2.3",
"gulp-util": "^3.0.8",
"joi": "^13.3.0",
"joi-objectid": "^2.0.0",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"np": "*",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"validator": "^10.2.0"
},
"dependencies": {}
}