-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 3.36 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
97
98
99
100
101
102
103
104
{
"name": "launchpad-ui",
"private": true,
"version": "0.0.1",
"description": "LaunchDarkly's design system",
"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",
"e2e:a11y": "STORYBOOK_URL=http://127.0.0.1:8080/ pnpm playwright test",
"generate": "plop",
"graph": "nx graph --affected",
"storybook": "pnpm build:transform && sb dev -p 3000",
"storybook:build": "pnpm build:transform && sb 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",
"prepare": "husky",
"release": "nx affected --target=build --base=HEAD~1 --head=HEAD --exclude=launchpad-design-system && changeset publish",
"typecheck": "pnpm build:transform && tsc --noEmit --emitDeclarationOnly false --skipLibCheck --moduleResolution bundler"
},
"repository": {
"type": "git",
"url": "git+https://github.com/launchdarkly/launchpad-ui.git"
},
"author": "Catamorphic Co.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/launchdarkly/launchpad-ui/issues"
},
"homepage": "https://github.com/launchdarkly/launchpad-ui#readme",
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@biomejs/biome": "1.9.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@playwright/test": "^1.49.0",
"@storybook/addon-a11y": "^8.4.0",
"@storybook/addon-designs": "^8.0.3",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-themes": "^8.4.0",
"@storybook/blocks": "^8.4.0",
"@storybook/components": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@storybook/test": "^8.4.0",
"@storybook/theming": "^8.4.0",
"@storybook/types": "^8.4.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/css-modules": "^1.0.5",
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.1",
"@vanilla-extract/css": "^1.17.0",
"@vanilla-extract/vite-plugin": "^4.0.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"browserslist": "^4.24.0",
"chromatic": "^11.22.0",
"deepmerge": "^4.3.1",
"husky": "^9.1.1",
"jsdom": "^26.0.0",
"lightningcss": "^1.28.1",
"lint-staged": "^15.3.0",
"nx": "20.0.7",
"plop": "^4.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router": "7.0.1",
"rollup-plugin-pure": "^0.2.1",
"storybook": "^8.4.0",
"storybook-addon-pseudo-states": "^4.0.0",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.0.2",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"vite": "^6.0.2"
},
"peerDependencyRules": {
"allowedVersions": {
"react": "19",
"rollup": "4",
"vite": "6"
}
}
},
"browserslist": ["last 2 versions", "not dead", "not IE 11"]
}