-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 821 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "code",
"version": "1.0.0",
"description": "<!-- Header section --> <h1 align=\"center\">Hackaton<img src=\"./frontend/public/assets/icon/logo.svg\" width=\"30px\" height=\"30px\" alt=\"logo\"></h1>",
"main": "index.js",
"scripts": {
"setup": "npm --prefix ./frontend i && npm --prefix ./backend i",
"migrate": "cd backend/ && node migrate.js && cd ..",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently -n front,back -c green,yellow -t \"HH:mm:ss\" -p \"{name} {time}\" \"npm --prefix ./frontend run dev\" \"npm --prefix ./backend run dev\"",
"dev-front": "npm --prefix ./frontend run dev",
"dev-back": "npm --prefix ./backend run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.0"
}
}