-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
33
34
35
36
{
"name": "bawd",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"log:server": "heroku logs -a bawd-server --tail",
"log:client": "heroku logs -a bawd-client --tail",
"log": "concurrently \"yarn log:server\" \"yarn log:client\"",
"dev": "concurrently \"elasticsearch\" \"kibana\" \"yarn workspace bawd-server run dev\" \"yarn workspace bawd-client run dev\"",
"heroku-postbuild": "yarn workspaces run build"
},
"engines": {
"node": "10.13.0",
"yarn": "1.22.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ButsAndCats/bawd.git"
},
"author": "George Butter <https://github.com/ButsAndCats>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ButsAndCats/bawd/issues"
},
"homepage": "https://github.com/ButsAndCats/bawd#readme",
"workspaces": [
"bawd-client",
"bawd-server"
],
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0"
}
}