forked from gardener/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 863 Bytes
/
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
{
"name": "gardener-dashboard",
"description": "Gardener Dashboard",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/gardener/dashboard"
},
"contributors": [
"Gross, Lukas <[email protected]>",
"Koser, Holger <[email protected]>",
"Sutter, Peter <[email protected]>"
],
"scripts": {
"postinstall": "yarn --cwd frontend install && yarn --cwd backend install",
"start": "yarn --cwd frontend build && yarn --cwd backend start",
"lint": "yarn --cwd backend lint && yarn --cwd frontend lint",
"test": "yarn --cwd backend test:coverage && yarn --cwd frontend test:unit",
"serve": "concurrently --raw --kill-others --handle-input \"yarn --cwd backend serve\" \"yarn --cwd frontend serve\""
},
"devDependencies": {
"concurrently": "^5.0.0"
}
}