-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.59 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.59 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
{
"name": "launchpad-ui",
"private": true,
"version": "0.0.1",
"description": "LaunchDarkly's design system",
"repository": "launchdarkly/launchpad-ui.git",
"author": "Catamorphic Co.",
"bugs": "https://github.com/launchdarkly/launchpad-ui/issues",
"homepage": "https://github.com/launchdarkly/launchpad-ui#readme",
"license": "Apache-2.0",
"scripts": {
"build": "nx run-many --target=build --all",
"build:packages": "nx affected --target=build",
"build:transform": "nx run-many --target=build --projects=@launchpad-ui/tokens",
"check": "biome check . --write",
"chromatic": "chromatic",
"clean": "nx run-many --target=clean --all",
"graph": "nx graph --affected",
"postinstall": "syncpack lint",
"prepare": "husky",
"release": "nx run-many --target=build --all --exclude=launchpad-design-system && changeset publish",
"storybook": "pnpm build:transform && storybook dev -p 3000",
"storybook:build": "pnpm build:transform && storybook build --quiet",
"test": "pnpm build:transform && vitest run --coverage",
"test:packages": "pnpm build:transform && nx affected --target=test",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"typecheck": "pnpm build:transform && tsc --noEmit --emitDeclarationOnly false --skipLibCheck --moduleResolution bundler --lib 'es2024, dom, dom.iterable'",
"upgrade-react-aria": "pnpm up react-aria \"@internationalized/*\" \"@react-aria/*\" \"@react-types/*\" \"@react-stately/*\" react-stately react-aria-components react react-dom @types/react @types/react-dom --latest -r"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@commitlint/types": "^20.4.0",
"@figma/code-connect": "^1.3.1",
"@storybook/addon-a11y": "^9.1.17",
"@storybook/addon-designs": "^10.0.1",
"@storybook/addon-docs": "^9.1.17",
"@storybook/addon-themes": "^9.1.17",
"@storybook/react-vite": "^9.1.17",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.0",
"@types/css-modules": "^1.0.5",
"@types/node": "^22.15.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vanilla-extract/css": "^1.17.1",
"@vanilla-extract/vite-plugin": "^5.1.0",
"@vitejs/plugin-react-oxc": "^0.2.0",
"@vitejs/plugin-react-swc": "^3.9.0",
"@vitest/coverage-v8": "^3.2.0",
"@vitest/ui": "^3.2.0",
"axe-core": "^4.10.3",
"browserslist": "^4.24.0",
"chromatic": "^13.1.3",
"deepmerge": "^4.3.1",
"husky": "^9.1.1",
"jsdom": "^26.0.0",
"lightningcss": "^1.30.1",
"lint-staged": "^16.0.0",
"nx": "21.2.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router": "7.13.0",
"rollup-plugin-pure": "^0.4.0",
"storybook": "^9.1.19",
"storybook-addon-pseudo-states": "^9.1.17",
"syncpack": "14.0.0-alpha.19",
"tsx": "^4.20.3",
"typescript": "^5.8.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "npm:rolldown-vite@6.3.16",
"vitest": "^3.2.0"
},
"browserslist": [
"last 2 versions",
"not dead",
"not IE 11"
],
"engines": {
"node": ">=22.14.0",
"npm": ">=11.5.1"
},
"packageManager": "pnpm@10.12.4",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@bundled-es-modules/glob",
"@parcel/watcher",
"@swc/core",
"esbuild",
"nx",
"rolldown",
"style-dictionary"
],
"peerDependencyRules": {
"allowedVersions": {
"react": "19",
"rollup": "4",
"vite": "6"
}
},
"overrides": {
"vite": "npm:rolldown-vite@6.3.16"
}
}
}