-
Notifications
You must be signed in to change notification settings - Fork 308
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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": "solana-com-monorepo",
"private": true,
"license": "GPL-3.0-or-later",
"repository": "https://github.com/solana-foundation/solana-com",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@turbo/gen": "^2.5.8",
"@workspace/config-eslint": "workspace:*",
"@workspace/config-typescript": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"turbo": "latest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,scss}": "prettier --write"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && find . -type d \\( -name 'node_modules' -o -name '.next' -o -name '.turbo' -o -name '.source' \\) -prune -exec rm -rf '{}' +",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"format:all": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"prepare": "husky"
},
"packageManager": "pnpm@10.15.1",
"pnpm": {
"overrides": {
"nth-check": "2.1.1",
"typescript": "5.8.3"
}
}
}