forked from khushalb002/MMSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "mmspace",
"version": "1.0.0",
"description": "A comprehensive mentor-mentee management system for educational institutions",
"main": "server/server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"install-server": "cd server && npm install",
"install-client": "cd client && npm install",
"install-all": "npm run install-server && npm run install-client",
"start": "cd server && npm start",
"test": "cd client && npm test",
"heroku-postbuild": "npm run install-all && npm run build"
},
"keywords": [
"mentor",
"mentee",
"education",
"management",
"react",
"nodejs",
"mongodb",
"express"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mmspace.git"
},
"bugs": {
"url": "https://github.com/yourusername/mmspace/issues"
},
"homepage": "https://github.com/yourusername/mmspace#readme",
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"express": "^5.1.0"
}
}