-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 928 Bytes
/
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
{
"name": "cms",
"description": "A course management system written using Express and React.",
"private": true,
"contributors": [
"Carlos Domani",
"Isaiah Burkes",
"Micah Still",
"Midas Oden",
"Trejon Goldsborough"
],
"license": "UNLICENSED",
"homepage": "https://cms.kltpzyxm.live/",
"scripts": {
"start": "npm start --prefix ./backend",
"backend-install": "npm install --prefix ./backend",
"backend-build": "npm run build --prefix ./backend",
"frontend-install": "npm install --prefix ./frontend",
"frontend-build": "npm run build --prefix ./frontend",
"heroku-prebuild": "npm run frontend-install && npm run backend-install",
"build": "npm run frontend-build && npm run backend-build",
"client": "npm run dev --prefix ./frontend",
"server": "npm run start:dev --prefix ./backend"
},
"engines": {
"node": ">=16.10.0",
"npm": ">=7.24.0"
}
}