-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.51 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
37
38
{
"name": "terarium",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/client/*",
"packages/server"
],
"scripts": {
"build": "yarn workspaces foreach --all --parallel --interlaced --verbose --topological run build",
"dev": "yarn workspace hmi-client run dev",
"local": "yarn workspace hmi-client run local",
"staging": "yarn workspace hmi-client run staging",
"generateTypes": "yarn workspace @uncharted/server-type-generator run generateTypes",
"serve": "yarn workspace hmi-client run build",
"lint": "eslint . --ext .ts,.vue --fix --cache",
"lint:ci": "eslint . --ext .ts,.vue",
"lint:clear-cache": "rm .eslintcache",
"typecheck": "yarn workspaces foreach --all --parallel --interlaced --verbose --topological run typecheck",
"test": "yarn workspaces foreach --all --parallel --verbose run test:ci",
"test:e2e": "yarn workspaces foreach --all --parallel --verbose run test:e2e",
"test:ct": "yarn workspaces foreach --all --parallel --verbose run test:ct",
"prettier": "prettier --ignore-path .prettierignore --write './**/*.{vue,ts}'",
"prettier:ci": "prettier --ignore-path .prettierignore --check '**/*.{vue,ts}'",
"format": "yarn lint && yarn prettier",
"postinstall": "husky install"
},
"devDependencies": {
"@vue/eslint-config-airbnb-with-typescript": "7.0.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-vue": "9.32.0",
"husky": "8.0.3",
"lint-staged": "15.3.0",
"prettier": "3.3.3",
"prettier-plugin-java": "2.6.7"
}
}