-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.12 KB
/
package.json
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
{
"name": "server",
"version": "1.0.0",
"description": "Elearning Platform",
"main": "server.js",
"type": "module",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node ./server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"devStart": "run-p server client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barhouum7/MathUniverse.git"
},
"keywords": [
"elearning",
"platform",
"student",
"instructor"
],
"author": "Ibrahim BHMBS",
"license": "ISC",
"bugs": {
"url": "https://github.com/barhouum7/MathUniverse/issues"
},
"homepage": "https://github.com/barhouum7/MathUniverse#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.11",
"nodemon": "^2.0.7"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "15.x",
"npm": "6.x"
}
}