-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.91 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.91 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "leafygreen-ui",
"version": "0.0.0",
"description": "leafyGreen UI Kit",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">= 22.21.0",
"pnpm": ">= 10.26.0"
},
"packageManager": "pnpm@10.26.0",
"scripts": {
"init": "pnpm install && pnpm build",
"init:react17": "pnpm clean; npx node ./scripts/react17/init.mjs; pnpm run init",
"create-package": "lg create",
"build": "turbo run build tsc",
"build:apps": "turbo run build --filter='@lg-apps/*'",
"build:cli": "turbo run build tsc --filter=@lg-tools/cli",
"build:packages": "turbo run build tsc --filter=!'@lg-apps/*'",
"dev:mcp-ui": "turbo run dev --filter=@lg-apps/mcp-ui-app",
"build:docs": "turbo run docs",
"build:tsc": "turbo run tsc",
"build:ts-downlevel": "pnpm recursive exec lg-ts-downlevel",
"build-storybook": "npx storybook build",
"chromatic": "npx chromatic",
"clean": "npx npm-run-all --parallel clean:*",
"clean:builds": "pnpm recursive exec -- rm -rf ./{dist,tsconfig.tsbuildinfo,stories.js}",
"clean:ts": "pnpm recursive exec -- rm -rf ./{dist/**/*.d.ts.,tsconfig.tsbuildinfo}",
"clean:cache": "pnpm recursive exec -- rm -rf ./.turbo; rm -rf .turbo/cache",
"clean:modules": "pnpm recursive exec -- rm -rf node_modules; rm -rf node_modules",
"fix": "lg lint --fix",
"link": "lg link",
"lint": "lg lint",
"prepublishOnly": "pnpm run build && pnpm build:ts-downlevel && pnpm build:docs",
"publish": "pnpm changeset publish --public",
"reset:react17": "npx node ./scripts/react17/reset.mjs; pnpm run init",
"slackbot": "lg slackbot release",
"start": "npx storybook dev -p 9001 --no-version-updates --no-open",
"serve": "npx http-server storybook-static -c5",
"test": "lg test",
"unlink": "lg unlink",
"validate": "lg validate",
"version": "pnpm run build && pnpm changeset version",
"watch": "npx nodemon --watch packages/ -e tsx,ts --exec 'pnpm run storybook build --test'"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/core": "7.24.3",
"@changesets/cli": "^2.26.0",
"@leafygreen-ui/testing-lib": "workspace:^",
"@lg-tools/build": "workspace:^",
"@lg-tools/cli": "workspace:^",
"@lg-tools/codemods": "workspace:^",
"@lg-tools/lint": "workspace:^",
"@lg-tools/meta": "workspace:^",
"@lg-tools/prompt-kit": "workspace:^",
"@lg-tools/storybook-addon": "workspace:^",
"@lg-tools/storybook-utils": "workspace:^",
"@lg-tools/test": "workspace:^",
"@storybook/react": "^8.6.14",
"@storybook/test": "^8.6.14",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "13.5.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.170",
"@types/node": "^20.12.5",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.8",
"chromatic": "^13.3.4",
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"npm-package-json-lint": "8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "8.6.15",
"stream": "^0.0.3",
"ts-node": "10.9.2",
"turbo": "^2.0.6",
"typescript": "~5.8.0"
},
"pnpm": {
"overrides": {
"@testing-library/dom": "9.3.4",
"@testing-library/user-event": "13.5.0",
"caniuse-lite": "^1.0.30001585",
"jackspeak": "2.1.1",
"typescript": "$typescript"
},
"onlyBuiltDependencies": [
"core-js",
"esbuild"
]
},
"lg": {
"scopes": {
"@leafygreen-ui": "packages",
"@lg-charts": "charts",
"@lg-chat": "chat",
"@lg-tools": "tools",
"@lg-mcp": "mcp"
}
},
"keywords": [
"mongodb",
"ui",
"kit",
"components",
"react",
"uikit",
"leafygreen"
],
"repository": {
"type": "git",
"url": "https://github.com/mongodb/leafygreen-ui.git"
},
"bugs": {
"url": "https://github.com/mongodb/leafygreen-ui/issues"
}
}