-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.77 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
39
{
"name": "root",
"private": true,
"workspaces": [
"applications/*",
"components/*",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "^8.0.3",
"husky": "^7.0.4",
"prettier": "2.4.1"
},
"scripts": {
"serve:comm": "yarn workspace @god/comm-components serve",
"serve:dml": "yarn workspace @app/dml serve",
"serve:dml-release": "yarn workspace @app/dml serve --mode release",
"serve:dsv": "yarn workspace @app/dsv serve",
"serve:dsv-release": "yarn workspace @app/dsv serve --mode release",
"serve:search": "yarn workspace @god/comm-search serve",
"serve:search-release": "yarn workspace @god/comm-search serve --mode release",
"serve:components": "yarn workspaces foreach --parallel --interlaced -v --from '@god/*' run serve",
"serve:apps": "yarn workspaces foreach --parallel --interlaced -v --from '@app/*' run serve",
"build:components": "yarn workspaces foreach --parallel --interlaced -v --from '@god/*' run build:components",
"build:packages": "yarn workspaces foreach --parallel --interlaced -v --from '@god/*' run build:packages",
"build:dml": "yarn workspace @app/dml build",
"build:dml-release": "yarn workspace @app/dml build --mode release",
"build:dsv": "yarn workspace @app/dsv build",
"build:search": "yarn workspace @god/comm-search build"
},
"packageManager": "[email protected]"
}