forked from getarcaneapp/arcane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 782 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 782 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
{
"name": "arcane-repo",
"private": true,
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"engines": {
"node": ">=25"
},
"workspaces": [
"frontend",
"tests",
"email-templates"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"lint-staged": {
"frontend/**/*": [
"sh -c 'just format frontend --check'"
],
"{tests,email-templates}/**/*.{ts,tsx,js,jsx,mts,cts}": [
"sh -c 'just format js --check'"
],
"{backend,cli,types}/**/*": [
"sh -c 'just format go --check'"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0"
}
}