-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.85 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.85 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
43
44
45
46
47
48
49
50
{
"name": "@repo/ptat",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"type": "module",
"workspaces": [
"./apps/*",
"./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,apps}/'",
"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",
"prepare": "husky",
"typecheck": "turbo run typecheck typecheck:root",
"typecheck:root": "tsc --noEmit"
},
"devDependencies": {
"@pentible/check-package-lock": "0.114.0",
"@pentible/eslint-config": "0.114.0",
"@pentible/eslint-config-expo": "0.114.0",
"@pentible/eslint-config-next": "0.114.0",
"@pentible/eslint-config-node": "0.114.0",
"@pentible/eslint-config-prettier": "0.114.0",
"@pentible/eslint-config-react": "0.114.0",
"@pentible/eslint-config-web": "0.114.0",
"@pentible/prettier": "0.114.0",
"@pentible/shellcheck-all": "0.114.0",
"@pentible/tsconfig": "0.114.0",
"@tanstack/eslint-plugin-query": "5.81.2",
"eslint": "9.29.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.12",
"turbo": "2.5.4",
"typescript": "5.8.3"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": "^22"
}
}