Skip to content
Permalink
main
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
{
"name": "resit-deferral-submission",
"version": "1.0.0",
"description": "Backend for Your Local Gym project",
"main": "index.js",
"scripts": {
"test": "cross-env DB_DATABASE=test_db jest --testTimeout=10000",
"test:watch": "cross-env DB_DATABASE=test_db jest --watch",
"testDB:drop": "mysql --user=root --password=codio -e 'DROP DATABASE test_db;'",
"testDB:create": "mysql --user=root --password=codio -e 'CREATE DATABASE test_db;'",
"testDB:migrate": "mysqldump --user=root --password=codio your_local_gym | mysql --user=root --password=codio test_db",
"pretest": "npm run testDB:drop && npm run testDB:create && npm run testDB:migrate"
},
"repository": {
"type": "git",
"url": "https://github.coventry.ac.uk/6003CEM-2021JANMAY/8463645-6003CEM-Backend-Resit-Deferral.git"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"author": "Miltos",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"bcrypt": "^5.0.1",
"jsonschema": "^1.4.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-passport": "^4.1.4",
"koa-router": "^10.1.1",
"passport-http": "^0.3.0",
"promise-mysql": "^5.0.4",
"redoc": "^2.0.0-rc.57",
"role-acl": "^4.5.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"jsdoc": "^3.6.7",
"supertest": "^6.1.6"
}
}