metric-imperial-converter/package.json

30 lines
677 B
JSON
Raw Normal View History

2017-02-18 20:14:10 +01:00
{
2023-04-23 12:10:46 +02:00
"name": "@radii/fcc-imperial-metric-converter-boilerplate",
"version": "1.0.0",
"description": "Metric / Imperial Unit Converter",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha ./tests/ --ui tdd"
},
"dependencies": {
"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",
"mocha": "^8.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/boilerplate-project-metricimpconverter"
},
"keywords": [
"node",
"freeCodeCamp",
"express"
],
"license": "AGPL-3.0-or-later"
2020-07-08 17:11:31 +02:00
}