-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.56 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
51
52
{
"name": "@withglyph/monorepo",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"bootstrap": "pnpm install && husky install && doppler setup --no-interactive",
"codegen": "turbo run codegen",
"dev": "turbo run dev --concurrency 255",
"fix": "pnpm run '/^fix:.+$/'",
"fix:eslint": "pnpm lint:eslint --fix",
"fix:prettier": "pnpm lint:prettier --write",
"lint": "pnpm run '/^lint:.+$/'",
"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": {
"@withglyph/lintconfig": "workspace:^",
"cspell": "^8.11.0",
"eslint": "^8.57.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"syncpack": "^12.3.3",
"tsx": "^4.16.2",
"turbo": "^2.0.7",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20",
"pnpm": "^9.0.1"
},
"pnpm": {
"allowedDeprecatedVersions": {
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@opentelemetry/api-metrics": "*",
"debuglog": "*",
"read-package-tree": "*",
"readdir-scoped-modules": "*",
"string-similarity": "*"
},
"patchedDependencies": {
"@repeaterjs/[email protected]": "patches/@[email protected]"
}
}
}