-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 787 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 787 Bytes
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
{
"name": "euphoric-monorepo",
"version": "1.0.0",
"description": "Professional event management website for Euphoric",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install"
},
"keywords": [
"event-management",
"react",
"nodejs",
"express",
"mysql"
],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
}
}