-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 KB
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
31
32
33
{
"name": "dental_therapy",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/AlaaShurrab/Dental-Therapy.git"
},
"keywords": [],
"license": "MIT",
"author": "",
"bugs": {
"url": "https://github.com/AlaaShurrab/Dental-Therapy/issues"
},
"homepage": "https://github.com/AlaaShurrab/Dental-Therapy#readme",
"scripts": {
"dev": "concurrently --kill-others-on-fail \"cd client && yarn start\" \"cd server && yarn dev\"",
"start": "cd server && yarn start",
"server": "cd server && yarn dev",
"client": "cd client && yarn start",
"init:both": "yarn && cd client && yarn && cd ../server && yarn",
"heroku-postbuild": "yarn init:both",
"lint": "cd client && yarn lint && cd ../server && yarn lint",
"test": "cd server && yarn test",
"build": "cd client && yarn build && cd ../server && yarn build",
"kill": "fuser -k 5000/tcp",
"kill:run": "yarn kill && yarn server",
"prepare": "husky install"
},
"devDependencies": {
"concurrently": "^6.2.0",
"husky": "^6.0.0"
}
}