-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"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:*",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"playwright": "^1.58.2",
"prettier": "^3.8.3",
"turbo": "latest"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=solana-com",
"dev:acc": "turbo run dev --filter=solana-com-accelerate",
"dev:bp": "turbo run dev --filter=solana-com-breakpoint",
"dev:media": "turbo run dev --filter=solana-com-media",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"i18n:audit": "node ./scripts/i18n/audit-messages.mjs",
"i18n": "node ./scripts/i18n/run.mjs all",
"i18n:ui": "node ./scripts/i18n/run.mjs ui",
"i18n:docs": "node ./scripts/i18n/run.mjs docs",
"i18n:prune": "node ./scripts/i18n/prune-messages.mjs",
"i18n:app": "node ./scripts/i18n/run.mjs app",
"clean": "turbo run clean && find . -type d \\( -name 'node_modules' -o -name '.next' -o -name '.turbo' -o -name '.source' \\) -prune -exec rm -rf '{}' +",
"media:optimize-images": "pnpm --filter solana-com-media exec node scripts/optimize-images.mjs",
"media:check-images": "pnpm --filter solana-com-media exec node scripts/check-images.mjs",
"prepare": "husky"
},
"packageManager": "pnpm@10.15.1",
"pnpm": {
"overrides": {
"@babel/plugin-transform-modules-systemjs@>=7.12.0 <=7.29.3": "7.29.4",
"nth-check": "2.1.1",
"typescript": "5.8.3",
"@react-aria/interactions": "3.25.6",
"basic-ftp@<5.3.1": "5.3.1",
"fast-uri@<=3.1.1": "3.1.2",
"flatted@<=3.4.1": "3.4.2",
"glob@>=10.2.0 <10.5.0": "10.5.0",
"handlebars@>=4.0.0 <=4.7.8": "4.7.9",
"immutable@>=5.0.0 <5.1.5": "5.1.5",
"lodash-es@>=4.0.0 <=4.17.23": "4.18.1",
"minimatch@<3.1.4": "3.1.5",
"minimatch@>=8.0.0 <8.0.6": "8.0.6",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"preact@>=10.27.0 <10.27.3": "10.27.3",
"rollup@>=4.0.0 <4.59.0": "4.59.0",
"serialize-javascript@<=7.0.2": "7.0.3",
"svgo@>=3.0.0 <3.3.3": "3.3.3",
"tar@<7.5.11": "7.5.11",
"tmp@<0.2.6": "0.2.6",
"undici@>=7.0.0 <7.24.0": "7.24.0",
"vite@>=7.0.0 <=7.3.1": "7.3.2"
}
}
}