mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 03:03:06 -05:00
* feat(challenge-editor): make work in gitpod * gitpod: make chal-editor ports public * refactor: use .env files to set variables Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
24 lines
541 B
JSON
24 lines
541 B
JSON
{
|
|
"name": "@freecodecamp/challenge-editor",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Editor to help with new challenge structure",
|
|
"scripts": {
|
|
"start": "ts-node server.ts",
|
|
"postinstall": "cp ./sample.env ./.env"
|
|
},
|
|
"author": "freeCodeCamp",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"cors": "2.8.5",
|
|
"express": "4.18.1",
|
|
"gray-matter": "4.0.3",
|
|
"ts-node": "10.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "4.17.13",
|
|
"dotenv": "16.0.1",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|