Files
freeCodeCamp/tools/challenge-editor/api/package.json
Shaun Hamilton cc7f584b96 feat(challenge-editor): make work in gitpod (#46784)
* 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>
2022-07-08 11:25:36 +02:00

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"
}
}