-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 924 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
32
33
34
{
"name": "@readable/monorepo",
"version": "0.0.1",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"sdks/*"
],
"scripts": {
"bootstrap": "husky && doppler setup --no-interactive",
"build": "turbo run build",
"dev": "turbo run dev",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:prettier": "prettier --check --ignore-unknown '**/*'",
"lint:spellcheck": "cspell --no-progress --relative '**/*'",
"lint:svelte": "turbo run lint:svelte",
"lint:syncpack": "syncpack lint",
"lint:typecheck": "turbo run lint:typecheck"
},
"devDependencies": {
"@readable/lintconfig": "workspace:*",
"cspell": "^8.16.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"syncpack": "^13.0.0",
"turbo": "^2.3.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}