-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 KB
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
{
"name": "@pentible/typescript-standards",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint lint:root --continue=dependencies-successful",
"lint:eslint:root": "eslint --ignore-pattern 'packages/'",
"lint:fix": "npm run lint:eslint -- -- --fix && npm run lint:prettier -- -- --write",
"lint:package-lock": "check-package-lock",
"lint:prettier": "turbo run lint:prettier lint:prettier:root --continue=dependencies-successful",
"lint:prettier:root": "prettier --check . --ignore-path .gitignore --ignore-path .root.prettierignore",
"lint:shellcheck": "shellcheck-all",
"lint:yaml": "yamllint --strict .",
"prepare": "husky",
"typecheck": "turbo run typecheck typecheck:root",
"typecheck:root": "tsc --noEmit"
},
"devDependencies": {
"@pentible/eslint-config": "*",
"@pentible/eslint-config-node": "*",
"@pentible/eslint-config-prettier": "*",
"@pentible/prettier": "*",
"esbuild": "0.25.5",
"eslint": "9.29.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.5.3",
"turbo": "2.5.4",
"typescript": "5.8.3"
},
"packageManager": "npm@11.4.2",
"engines": {
"node": "^22"
}
}