2013-11-13 12:32:22 -05:00
|
|
|
{
|
2018-08-31 16:04:04 +01:00
|
|
|
"name": "@freecodecamp/api-server",
|
2019-06-17 05:16:35 +05:30
|
|
|
"version": "0.0.1",
|
2021-03-27 20:16:20 +05:30
|
|
|
"description": "The freeCodeCamp.org open-source codebase and curriculum",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"private": true,
|
|
|
|
"engines": {
|
2021-11-02 17:01:45 +05:30
|
|
|
"node": ">=16",
|
|
|
|
"npm": ">=8"
|
2021-03-27 20:16:20 +05:30
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/freeCodeCamp/freeCodeCamp.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
|
|
|
|
"author": "freeCodeCamp <team@freecodecamp.org>",
|
|
|
|
"main": "none",
|
2014-02-10 13:43:36 -05:00
|
|
|
"scripts": {
|
2021-02-26 01:32:35 +05:30
|
|
|
"babel-dev-server": "babel-node --inspect=0.0.0.0 ./src/server/index.js",
|
2021-04-27 19:40:01 +02:00
|
|
|
"build": "babel src --out-dir lib --ignore 'node_modules /**/*','/**/*.test.js' --copy-files --no-copy-ignored",
|
2021-03-27 20:16:20 +05:30
|
|
|
"develop": "cross-env DEBUG=fcc* node src/development-start.js",
|
2021-05-16 14:38:04 +02:00
|
|
|
"start": "cross-env DEBUG=fcc* node lib/production-start.js"
|
2014-02-10 13:43:36 -05:00
|
|
|
},
|
2021-03-27 20:16:20 +05:30
|
|
|
"resolutions": {
|
|
|
|
"babel-core": "7.0.0-bridge.0"
|
|
|
|
},
|
2013-11-13 18:09:22 -05:00
|
|
|
"dependencies": {
|
2020-03-16 15:03:17 +01:00
|
|
|
"@freecodecamp/loopback-component-passport": "^1.2.0",
|
2021-10-06 07:22:24 +05:30
|
|
|
"@sentry/node": "^6.13.3",
|
2019-06-21 18:01:22 +05:30
|
|
|
"accepts": "^1.3.7",
|
2021-10-25 14:53:43 +05:30
|
|
|
"axios": "^0.23.0",
|
2020-12-27 05:07:03 +00:00
|
|
|
"bad-words": "^3.0.4",
|
2019-06-21 18:01:22 +05:30
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"compression": "^1.7.4",
|
2020-03-16 15:03:17 +01:00
|
|
|
"connect-mongo": "^3.2.0",
|
2020-09-16 11:41:33 +05:30
|
|
|
"cookie-parser": "^1.4.5",
|
2019-02-04 20:32:42 +05:30
|
|
|
"cors": "^2.8.5",
|
2021-02-26 01:32:35 +05:30
|
|
|
"cross-env": "^7.0.3",
|
2020-09-16 11:41:33 +05:30
|
|
|
"csurf": "^1.11.0",
|
2016-11-06 21:45:09 -05:00
|
|
|
"d3": "~3.5.17",
|
2019-06-21 18:01:22 +05:30
|
|
|
"date-fns": "^1.30.1",
|
2015-11-09 23:05:43 -08:00
|
|
|
"debug": "^2.2.0",
|
2017-03-05 00:03:11 +01:00
|
|
|
"dedent": "~0.7.0",
|
2019-02-04 20:32:42 +05:30
|
|
|
"dotenv": "^6.2.0",
|
2015-05-04 17:37:29 -04:00
|
|
|
"express-flash": "~0.0.2",
|
2021-06-28 16:10:02 +05:30
|
|
|
"express-session": "^1.17.2",
|
2021-10-06 07:22:24 +05:30
|
|
|
"express-validator": "^6.13.0",
|
2020-10-12 11:06:59 +02:00
|
|
|
"helmet": "^3.23.3",
|
|
|
|
"helmet-csp": "^2.10.0",
|
2019-06-21 18:01:22 +05:30
|
|
|
"jsonwebtoken": "^8.5.1",
|
2021-02-21 05:26:28 +00:00
|
|
|
"lodash": "^4.17.21",
|
2020-12-27 06:08:19 +00:00
|
|
|
"loopback": "^3.28.0",
|
2019-06-21 18:01:22 +05:30
|
|
|
"loopback-boot": "^2.28.0",
|
|
|
|
"loopback-connector-mongodb": "^4.2.0",
|
2018-08-23 16:29:26 +01:00
|
|
|
"method-override": "^3.0.0",
|
2020-10-10 22:26:47 +05:30
|
|
|
"moment": "^2.29.1",
|
2021-02-07 05:33:21 +00:00
|
|
|
"moment-timezone": "^0.5.33",
|
2021-06-28 16:10:02 +05:30
|
|
|
"mongodb": "^3.6.9",
|
2020-09-16 11:41:33 +05:30
|
|
|
"morgan": "^1.10.0",
|
2022-01-25 06:39:41 +01:00
|
|
|
"nanoid": "^3.2.0",
|
2019-02-04 11:42:31 +00:00
|
|
|
"nodemailer-ses-transport": "^1.5.1",
|
2020-10-10 17:18:16 +00:00
|
|
|
"passport": "^0.4.1",
|
2021-10-06 07:22:24 +05:30
|
|
|
"passport-auth0": "^1.4.1",
|
2015-06-04 12:03:53 -07:00
|
|
|
"passport-local": "^1.0.0",
|
2021-02-26 01:32:35 +05:30
|
|
|
"passport-mock-strategy": "^2.0.0",
|
2021-03-05 02:30:11 +05:30
|
|
|
"query-string": "^6.14.0",
|
2019-06-21 18:01:22 +05:30
|
|
|
"rx": "^4.1.0",
|
2021-10-06 07:22:24 +05:30
|
|
|
"stripe": "^8.184.0",
|
2020-10-12 11:06:59 +02:00
|
|
|
"uuid": "^3.4.0",
|
2021-11-02 06:25:05 -04:00
|
|
|
"validator": "^13.6.0"
|
2014-02-24 22:58:35 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-06 07:22:24 +05:30
|
|
|
"@babel/cli": "^7.15.7",
|
|
|
|
"@babel/core": "^7.15.8",
|
|
|
|
"@babel/node": "^7.15.8",
|
2021-06-28 16:11:02 +05:30
|
|
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
2021-10-06 07:22:24 +05:30
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
|
2021-06-28 16:10:02 +05:30
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
|
2021-10-06 07:22:24 +05:30
|
|
|
"@babel/preset-env": "^7.15.8",
|
|
|
|
"@babel/register": "^7.15.3",
|
2018-11-30 14:24:16 +00:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2018-08-23 16:29:26 +01:00
|
|
|
"babel-plugin-transform-function-bind": "^6.22.0",
|
2019-02-04 20:32:42 +05:30
|
|
|
"babel-plugin-transform-imports": "^1.5.1",
|
2019-06-21 18:01:22 +05:30
|
|
|
"loopback-component-explorer": "^6.4.0",
|
2021-10-06 07:22:24 +05:30
|
|
|
"nodemon": "^2.0.14",
|
2020-11-28 08:11:33 +01:00
|
|
|
"smee-client": "^1.2.2"
|
2017-07-06 03:19:58 +05:30
|
|
|
}
|
2016-09-23 15:38:49 -07:00
|
|
|
}
|