-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 KB
/
package.json
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
{
"name": "@lutralabs/ees-monorepo",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "pnpm nx run-many --target=build",
"lint": "biome check . && forge fmt --root packages/contracts --check",
"lint:fix": "biome check --apply . && forge fmt --root packages/contracts",
"prepare": "husky install",
"coverage": "pnpm nx run-many --target=coverage",
"cron": "pnpm nx run-many --target=cron",
"test": "pnpm nx run-many --target=test",
"test:ci": "pnpm nx run-many --target=test:ci",
"test:cron": "cross-env CRON=true pnpm nx run-many --target=test:cron"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nx/js": "19.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"nx": "19.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.12.2"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}