-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 896 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 896 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
{
"name": "constructor-ietm",
"version": "1.0.0",
"description": "",
"scripts": {
"frontend": "cd front && npm run lint",
"start": "npm-run-all -p -r start-back start-front",
"start-back": "npm --prefix back run start",
"start-front": "npm --prefix front run start",
"start-dev": "npm-run-all -p -r start-dev-back start-dev-front",
"start-dev-back": "npm --prefix back run start:dev",
"start-dev-front": "npm --prefix front run start:dev",
"install-all": "npm install & npm run install-back & npm run install-front",
"install-back": "cd back && npm install",
"install-front": "cd front && npm install"
},
"repository": {
"type": "git",
"url": "git@github.com:joshkhdev/constructor-ietm.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"husky": "^7.0.2"
}
}