forked from beekeeper-studio/beekeeper-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 977 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
26
27
28
29
30
31
{
"name": "bks-root",
"version": "1.0.0",
"repository": "git@github.com:beekeeper-studio/beekeeper-studio.git",
"author": "Matthew Rathbone <matthew.rathbone@gmail.com>",
"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"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"npm-run-all": "^4.1.5"
}
}