Files
CTFd/package.json
Kevin Chung d80051bcda Mark 2.3.2 (#1292)
2.3.2 / 2020-03-15
==================

**General**
* Fix awards not being properly assigned to teams in `TEAMS_MODE`

**API**
* Set `/api/v1/statistics/users` route to be admins_only
* When POST'ing to `/api/v1/awards`, CTFd will look up a user's team ID if `team_id` is not specified

**Admin Panel**
* Adds a setting to registration visibility to allow for MLC registration while registration is disabled
* Fix setting theme color during the setup flow and from the Admin Panel

**Themes**
* Fixes users/admins being able to remove profile settings.
    * Previously a bug prevented users from removing some profile settings. Now the `core` theme stores the initial value of inputs as a `data` attribute and checks for changes when updating data. This should be a temporary hack until a proper front-end framework is in place.
* Fix `ezToast()` issue that was keeping toast messages visible indefinitely
* Fix `modal-body` parameters in ezq.js for `ezAlert` and `ezQuery` and fix the progress bar for certain cases in `ezProgressBar`
* Use `authed()` function to check if user is authed in `base.html`. This fixes an issue where a page could look as if the user was logged in.

**Miscellaneous**
* Fix behavior for `REVERSE_PROXY` config setting when set to a boolean instead of a string
* Improve `Dockerfile` to run fewer commands and re-use the build cache
* Add `make coverage` to generate an HTML coverage report
* Update `coverage` and `pytest-cov` development dependencies
2020-03-15 15:33:28 -04:00

65 lines
2.3 KiB
JSON

{
"name": "ctfd",
"version": "2.3.2",
"description": "CTFd is a Capture The Flag framework focusing on ease of use and customizability. It comes with everything you need to run a CTF and it's easy to customize with plugins and themes.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "node_modules/webpack-cli/bin/cli.js -w --mode=development",
"build": "node_modules/webpack-cli/bin/cli.js --mode=development; node_modules/webpack-cli/bin/cli.js --mode=production",
"verify": "node_modules/webpack-cli/bin/cli.js --mode=development --display=errors-only; node_modules/webpack-cli/bin/cli.js --mode=production --display=errors-only; git diff --quiet --exit-code",
"clean": "rm -rf CTFd/themes/core/static/css/* CTFd/themes/core/static/js/* CTFd/themes/admin/static/css/* CTFd/themes/admin/static/js/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CTFd/CTFd.git"
},
"author": "Kevin Chung <kchung@ctfd.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CTFd/CTFd/issues"
},
"homepage": "https://github.com/CTFd/CTFd#readme",
"devDependencies": {
"@babel/core": "~7.2.2",
"@babel/preset-env": "~7.2.3",
"@fortawesome/fontawesome-free": "~5.11.0",
"babel-loader": "~8.0.5",
"bootstrap": "~4.3.1",
"bootstrap-multimodal": "~1.0.4",
"codemirror": "~5.42.2",
"css-loader": "~2.1.0",
"eslint": "~5.12.0",
"event-source-polyfill": "~1.0.7",
"file-loader": "~3.0.1",
"howler": "~2.1.2",
"jquery": "~3.4.1",
"markdown-it": "~10.0.0",
"mini-css-extract-plugin": "~0.7.0",
"moment-timezone": "^0.5.26",
"node-sass": "^4.12.0",
"nunjucks": "~3.2.0",
"optimize-css-assets-webpack-plugin": "~5.0.1",
"plotly.js-basic-dist": "~1.48.3",
"popper.js": "^1.15.0",
"remove-strict-webpack-plugin": "~0.1.2",
"sass-loader": "^8.0.0",
"string-replace-loader": "^2.2.0",
"swagger-js-codegen": "~1.12.0",
"to-string-loader": "^1.1.5",
"typeface-lato": "~0.0.54",
"typeface-raleway": "~0.0.54",
"uglifyjs-webpack-plugin": "~2.1.1",
"webpack": "~4.28.1",
"webpack-cli": "~3.2.1",
"webpack-fix-style-only-entries": "~0.3.0",
"webpack-shell-plugin": "^0.5.0",
"whatwg-fetch": "~3.0.0"
},
"dependencies": {
"@babel/polyfill": "~7.2.5"
}
}