-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "@localazy/config-monorepo",
"private": true,
"description": "Localazy configuration monorepo",
"license": "MIT",
"author": {
"name": "Localazy",
"email": "team@localazy.com",
"url": "https://localazy.com"
},
"type": "module",
"scripts": {
"build": "turbo build",
"check": "pnpm run prettier && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"check:fix": "pnpm run prettier:fix && pnpm run lint:fix",
"dev": "turbo dev",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:inspect": "eslint --inspect-config",
"prepare": "husky",
"prettier": "prettier --check .",
"prettier:fix": "prettier --fix .",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"test:watch": "turbo test:watch",
"typecheck": "turbo typecheck"
},
"prettier": "@localazy/prettier-config",
"devDependencies": {
"@localazy/eslint-config": "workspace:*",
"@localazy/prettier-config": "file:../prettier-config",
"@localazy/tsconfig": "file:../tsconfig",
"@types/node": "^22.17.0",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"turbo": "^2.5.5",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.3.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
}
}