-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
96 lines (96 loc) · 3.02 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
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
{
"name": "leafygreen-ui",
"version": "0.0.0",
"description": "leafyGreen UI Kit",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">= 18.12.0",
"pnpm": ">= 9.15.0"
},
"scripts": {
"init": "pnpm install && pnpm build",
"init17": "pnpm install && pnpm build:cli && npx ts-node tools/test/scripts/install-react17.ts && pnpm build",
"create-package": "lg create",
"prebuild": "pnpm build:cli",
"build": "turbo run build tsc",
"build:cli": "turbo run build tsc --filter=@lg-tools/cli",
"build:docs": "turbo run docs",
"build:tsc": "turbo run tsc",
"build-storybook": "npx storybook build",
"chromatic": "npx chromatic",
"clean": "npm-run-all --parallel clean:*",
"clean:builds": "pnpm recursive exec -- rm -rf ./{dist,tsconfig.tsbuildinfo,stories.js}",
"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 && turbo run docs",
"publish": "pnpm changeset publish --public",
"slackbot": "lg slackbot release",
"start": "npx storybook dev -p 9001 --no-version-updates",
"serve": "npx http-server storybook-static -c5",
"test": "lg test",
"unlink": "lg unlink",
"validate": "lg validate",
"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/lint": "workspace:^",
"@lg-tools/meta": "workspace:^",
"@lg-tools/storybook-addon": "workspace:^",
"@lg-tools/storybook-utils": "workspace:^",
"@lg-tools/test": "workspace:^",
"@storybook/react": "^7.6.20",
"@testing-library/react": "^12.0.0 || ^13.1.0 || ^14.0.0",
"@testing-library/react-hooks": ">=3.7.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": "^11.0.0",
"dotenv": "^10.0.0",
"gh-pages": "^3.1.0",
"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": "^7.6.20",
"ts-node":"10.9.2",
"turbo": "^2.0.6",
"typescript": "~4.9.0"
},
"pnpm": {
"overrides": {
"caniuse-lite": "^1.0.30001585",
"jackspeak": "2.1.1"
}
},
"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"
},
"packageManager": "[email protected]"
}