-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 869 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 869 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
{
"name": "@pipeit/monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@10.28.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@solana/prettier-config-solana": "^0.0.6",
"@types/node": "^24.10.0",
"prettier": "^3.7.4",
"turbo": "^2.7.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"globalthis@1.0.4": "npm:@ungap/global-this@^0.4.4"
}
},
"engines": {
"node": ">=20.18.0",
"pnpm": "^10"
}
}