-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
{
"name": "ui",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build-next": "turbo run build-next",
"build-payload": "turbo run build-payload",
"dev": "turbo run dev --parallel",
"lint-check": "turbo run lint-check",
"lint": "turbo run lint",
"prepare": "husky install",
"release": "changeset version && pnpm install",
"publish": "-r publish",
"jest": "turbo run jest",
"playwright": "turbo run playwright",
"test": "turbo run jest playwright --parallel",
"clean": "turbo run clean && rm -rf node_modules",
"format-check": "prettier --check \"**/*.+(json|md|yml)\" './'",
"format": "prettier --write \"**/*.+(json|md|yml)\" './'",
"bump": "node scripts/bump.js"
},
"devDependencies": {
"@actions/exec": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@playwright/test": "catalog:",
"eslint": "catalog:",
"eslint-config-commons-ui": "workspace:*",
"husky": "catalog:",
"lint-staged": "catalog:",
"playwright-config-commons-ui": "workspace:*",
"prettier": "catalog:",
"turbo": "catalog:"
},
"engines": {
"node": "20.x",
"pnpm": "9"
},
"packageManager": "pnpm@9.9.0",
"pnpm": {
"overrides": {
"sharp": "catalog:"
}
}
}