-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
86 lines (86 loc) · 2.54 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
{
"name": "leafygreen-ui",
"version": "0.0.0",
"description": "leafyGreen UI Kit",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">= 18.0.0",
"npm": ">= 8.19.4"
},
"scripts": {
"init": "yarn && yarn build",
"init17": "yarn && yarn build:cli && npx ts-node tools/test/scripts/install-react17.ts && yarn build",
"create-package": "lg create",
"prebuild": "yarn build:cli",
"build": "turbo run build tsc",
"build:cli": "turbo run build tsc --filter=@lg-tools/cli",
"build-storybook": "npx storybook build",
"build:tsc": "turbo run tsc",
"chromatic": "npx chromatic",
"clean": "npm-run-all --parallel clean:*",
"clean:builds": "rm -rf {packages,tools,chat}/*/{dist,tsconfig.tsbuildinfo,stories.js,.turbo}",
"clean:cache": "rm -rf .turbo {cache}",
"clean:modules": "rm -rf node_modules {packages,tools,chat}/*/node_modules",
"clean:ts": "rm -rf {packages,tools,chat}/*/{dist/**/*.ts,dist/**/*.ts.map,tsconfig.tsbuildinfo,ts-trace,.turbo}",
"fix": "lg lint --fix",
"link": "lg link",
"lint": "lg lint",
"prepublishOnly": "yarn build && turbo run docs",
"publish": "yarn 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 'yarn build-storybook --test'"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/core": "7.24.3",
"@changesets/cli": "^2.26.0",
"@lg-tools/cli": "*",
"@lg-tools/storybook-addon": "*",
"@types/lodash": "^4.14.170",
"@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-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.17",
"turbo": "^2.0.6",
"typescript": "~4.9.0"
},
"resolutions": {
"caniuse-lite": "^1.0.30001585",
"jackspeak": "2.1.1"
},
"workspaces": [
"charts/*",
"chat/*",
"packages/*",
"tools/*"
],
"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]"
}