generated from WildCodeSchool/create-js-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 795 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "template-fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm i && husky install && npm --prefix ./frontend i && npm --prefix ./backend i",
"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",
"lint": "npm --prefix ./frontend run lint && npm --prefix ./backend run lint",
"fix": "npm --prefix ./frontend run fix && npm --prefix ./backend run fix"
},
"keywords": [],
"author": "Wild Code School",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.0.0",
"husky": "^7.0.0"
}
}