-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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
38
39
{
"name": "@marsfoundation/app-monorepo",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": "=9.14.2"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm run --filter './packages/app' dev",
"storybook": "pnpm run --filter './packages/app' storybook",
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"build": "pnpm run --aggregate-output --reporter append-only --filter './packages/**' build",
"verify": "pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' verify",
"typecheck": "pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' typecheck",
"fix": "pnpm run check:fix && pnpm run verify",
"clean": "pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' clean"
},
"dependencies": {
"bignumber.js": "^9.1.2",
"zod": "3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/js": "^9.3.0",
"concurrently": "^8.2.2",
"eslint": "^9.3.0",
"tsx": "^4.15.6",
"typescript": "^5.6.2",
"typescript-eslint": "^7.11.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}