-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
40
41
{
"name": "uicore",
"version": "1.0.0",
"main": "index.js",
"author": "Kwameowusu <[email protected]>",
"scripts": {
"sb": "yarn workspace ui run dev",
"cl": "yarn workspace client run dev",
"ad": "yarn workspace admin run dev",
"st": "yarn workspace site run dev",
"uc": "yarn workspace uicore run dev",
"cl:build": "yarn workspace client run build",
"ad:build": "yarn workspace admin run build",
"st:build": "yarn workspace site run build",
"sb:build": "yarn workspace ui run build",
"uc:build": "yarn workspace uicore run build",
"dp-cl": "yarn uc:build && yarn cl:build",
"dp-ad": "yarn uc:build && yarn ad:build",
"dp-st": "yarn uc:build && yarn st:build",
"dp-sb": "yarn uc:build && yarn sb:build ",
"typecheck": "yarn workspaces --verbose run typecheck",
"lint": "yarn workspaces run lint",
"pretest": "yarn lint",
"format": "prettier --loglevel warn --write \"**/*.{js,ts,tsx,css,md}\"",
"posttest": "yarn format"
},
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint-plugin-react": "^7.33.2",
"eslint-config-prettier": "^9.0.0",
"eslint": "^8.49.0",
"prettier": "^3.0.3"
}
}