forked from beekeeper-studio/beekeeper-studio
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.09 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
{
"name": "bks-root",
"version": "1.0.0",
"repository": "[email protected]:beekeeper-studio/beekeeper-studio.git",
"author": "Matthew Rathbone <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"apps/*"
]
},
"scripts": {
"bks:build": "yarn workspace beekeeper-studio electron:build",
"bks:dev": "yarn workspace beekeeper-studio electron:serve",
"sqltools:build": "yarn workspace sqltools build",
"sqltools:dev": "yarn workspace sqltools serve",
"electron:build": "yarn bks:build",
"electron:serve": "yarn bks:dev",
"docs:serve": "yarn workspace beekeeper-studio docs:serve",
"web:serve": "yarn sqltools:dev",
"test:e2e": "yarn workspace beekeeper-studio test:e2e",
"test:integration": "yarn workspace beekeeper-studio test:integration",
"test:unit": "yarn workspace beekeeper-studio test:unit",
"test:ci": "yarn workspace beekeeper-studio test:ci",
"all:lint": "yarn workspace beekeeper-studio lint && yarn workspace sqltools lint && npx eslint 'shared/**' --fix"
},
"resolutions": {}
}