forked from GSG-G9/dentoro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 831 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
31
{
"name": "dentoro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G9/dentoro.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G9/dentoro/issues"
},
"homepage": "https://github.com/GSG-G9/dentoro#readme",
"scripts": {
"start": "cd server && yarn start",
"server": "cd server && yarn dev",
"client": "cd client && yarn start",
"heroku:postBuild": "cd client && yarn && yarn build",
"lint": "cd client && yarn lint && cd ../server && yarn lint",
"test": "cd server && yarn test",
"kill": "fuser -k 5000/tcp",
"kill:run": "yarn kill && yarn server",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^6.0.0"
}
}