-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·32 lines (32 loc) · 1.08 KB
/
package.json
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
{
"private": true,
"name": "killreport",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/umutyerebakmaz/killreport"
},
"keywords": [
"angular"
],
"author": "Umut Yerebakmaz <[email protected]> (https://github.com/umutyerebakmaz)",
"bugs": {
"url": "https://github.com/umutyerebakmaz/killreport/issues"
},
"homepage": "https://github.com/umutyerebakmaz/killreport/blob/main/README.md",
"workspaces": [
"frontend",
"server"
],
"scripts": {
"server:start": "cd server && yarn start",
"server:restart": "cd server && yarn restart",
"frontend:start": "cd frontend && yarn start",
"frontend:restart": "cd frontend && yarn restart",
"remove:frontend": "cd frontend && rm -rf node_modules .angular",
"remove:server": "cd server && rm -rf node_modules",
"remove:main": "rm -rf node_modules yarn.lock",
"remove:all": "yarn remove:frontend && yarn remove:server && yarn remove:main"
}
}