-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.28 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
{
"name": "localmind",
"version": "1.0.0",
"private": true,
"description": "LocalMind - AI Without Limits",
"scripts": {
"prepare": "husky install",
"lint:backend": "cd LocalMind-Backend && pnpm lint",
"lint:frontend": "cd LocalMind-Frontend && pnpm lint",
"lint:fix:backend": "cd LocalMind-Backend && pnpm lint:fix",
"lint:fix:frontend": "cd LocalMind-Frontend && pnpm lint:fix",
"format:backend": "cd LocalMind-Backend && pnpm format",
"format:frontend": "cd LocalMind-Frontend && pnpm format",
"format:check:backend": "cd LocalMind-Backend && pnpm format:check",
"format:check:frontend": "cd LocalMind-Frontend && pnpm format:check",
"lint": "pnpm lint:backend && pnpm lint:frontend",
"lint:fix": "pnpm lint:fix:backend && pnpm lint:fix:frontend",
"format": "pnpm format:backend && pnpm format:frontend",
"format:check": "pnpm format:check:backend && pnpm format:check:frontend"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.2.11"
},
"lint-staged": {
"LocalMind-Backend/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"LocalMind-Frontend/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}