-
-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 701 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 701 Bytes
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
{
"packageManager": "pnpm@10.32.1",
"scripts": {
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
},
"lint-staged": {
"SparkyFitnessFrontend/**/*.{ts,tsx}": [
"npx prettier --write"
],
"SparkyFitnessServer/**/*.{js,ts}": [
"npx prettier --write"
]
},
"pnpm": {
"overrides": {
"side-channel": "1.0.6",
"tailwindcss": "4.2.1"
},
"onlyBuiltDependencies": [
"@scarf/scarf",
"@swc/core",
"bcrypt",
"sharp",
"esbuild",
"unrs-resolver"
],
"patchedDependencies": {}
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}