mirror of
https://github.com/NinjaSurge/Project-Manager.git
synced 2026-03-11 20:24:48 -05:00
32 lines
861 B
JSON
32 lines
861 B
JSON
{
|
|
"name": "project-manager-server",
|
|
"version": "1.0.0",
|
|
"description": "This is the Backend for the Project Manager",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"server": "nodemon server.js --config ./configs/nodemon.json",
|
|
"frontend": "cd ../project-manager && npm start dev",
|
|
"dev": "concurrently \"npm:server\" \"npm:frontend\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/NinjaSurge/Project-Manager.git"
|
|
},
|
|
"author": "NinjaSurge",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/NinjaSurge/Project-Manager/issues"
|
|
},
|
|
"homepage": "https://github.com/NinjaSurge/Project-Manager#readme",
|
|
"dependencies": {
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"jest": "^29.3.1",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.2.4",
|
|
"mock-fs": "^5.2.0"
|
|
}
|
|
}
|