This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/7-quality-assurance/5-american-british-translator/package.json

26 lines
693 B
JSON
Raw Permalink Normal View History

2022-11-19 15:43:04 +00:00
{
"name": "american-british-english-translator",
"version": "2.0.0",
"description": "Quality Assurance 5: American / British English Translator",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha --timeout 5000 --require @babel/register --recursive --exit --ui tdd tests/"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsdom": "^16.4.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4"
},
"license": "MIT"
}