Skip to content
Permalink
d7d803a02e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
33 lines (33 sloc) 853 Bytes
{
"name": "api",
"version": "1.0.0",
"description": "NodeJS RESTful API for the 304CEM Resit coursework project.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.coventry.ac.uk/caracold/304CEM-resit.git"
},
"author": "Diogo Mateus",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.3",
"path": "^0.12.7"
},
"devDependencies": {
"nodemon": "^2.0.3"
},
"engines": {
"node": "13.x"
}
}