-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.42 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
{
"name": "@primer/brand-storybook",
"version": "0.70.0",
"private": true,
"type": "module",
"description": "Primer Brand Storybook",
"keywords": [
"primer",
"react",
"components",
"library",
"design-system"
],
"homepage": "https://primer.style/brand",
"bugs": {
"url": "https://github.com/primer/brand/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/primer/brand.git"
},
"license": "MIT",
"author": "GitHub, Inc.",
"scripts": {
"build": "npm run check-translations && npm run clean && scripts/build-storybook",
"clean": "rm -rf out",
"check": "tsc --noEmit",
"start": "npm run check-translations && storybook dev -p 6006",
"start:axe": "storybook dev -p 6006 --no-version-updates",
"check-translations": "tsx scripts/validate-translation-keys.ts",
"format": "prettier --check '**/*.{js,jsx,ts,tsx,md,mdx,css,json}'",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx,md,mdx,css,json}'",
"lint": "eslint '**/*.{js,ts,tsx,md,mdx}' --max-warnings=0"
},
"devDependencies": {
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@github/axe-github": "0.8.1",
"@storybook/addon-a11y": "10.3.4",
"@storybook/addon-webpack5-compiler-swc": "4.0.3",
"@storybook/test-runner": "^0.24.3",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/mocker": "^4.1.2",
"axe-core": "4.11.2",
"axe-playwright": "^2.2.2",
"css-loader": "7.1.4",
"highlight.js": "11.11.1",
"i18next": "^26.0.3",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.4",
"identity-obj-proxy": "^3.0.0",
"postcss": "8.5.10",
"postcss-loader": "8.2.1",
"postcss-preset-env": "11.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^17.0.2",
"storybook": "10.3.4",
"storybook-addon-pseudo-states": "10.3.4",
"tsx": "^4.21.0",
"typed-css-modules": "0.9.1",
"typescript": "5.9.3"
},
"peerDependencies": {
"react": ">=17 <= 19",
"react-dom": ">=17 <= 19"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@storybook/addon-links": "10.3.4",
"@storybook/addon-styling-webpack": "^3.0.2",
"@storybook/react-vite": "10.3.4",
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.3"
}
}