forked from openstatusHQ/openstatus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 824 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:strict": "eslint --max-warnings=0 apps/**/*.{ts,tsx}",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier -c \"**/*.{ts,tsx,md}\"",
"tsc": "tsc",
"test": "turbo run test"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@openstatus/eslint-config": "workspace:*",
"@turbo/gen": "1.10.12",
"eslint": "8.50.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"turbo": "1.10.12",
"typescript": "5.2.2"
},
"packageManager": "[email protected]",
"name": "openstatus",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*",
"packages/notifications/*"
]
}