-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.35 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
{
"name": "@primer/brand-storybook",
"version": "0.61.0",
"private": true,
"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.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.27.0",
"@github/axe-github": "0.7.0",
"@storybook/addon-a11y": "9.1.8",
"@storybook/addon-docs": "9.1.8",
"@storybook/addon-links": "^9.1.8",
"@storybook/addon-webpack5-compiler-swc": "4.0.1",
"@storybook/react": "9.1.8",
"@storybook/react-dom-shim": "9.1.8",
"@storybook/react-webpack5": "9.1.8",
"@storybook/test-runner": "^0.24.1",
"@types/node": "22.18.1",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"axe-core": "4.10.2",
"axe-playwright": "^1.2.3",
"css-loader": "7.1.2",
"highlight.js": "11.11.1",
"i18next": "^25.3.2",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"identity-obj-proxy": "^3.0.0",
"postcss": "8.5.1",
"postcss-loader": "8.1.1",
"postcss-preset-env": "10.1.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^15.6.0",
"storybook": "9.1.17",
"storybook-css-modules-preset": "^1.1.1",
"tsx": "^4.19.2",
"typed-css-modules": "0.9.1",
"typescript": "5.8.2"
},
"peerDependencies": {
"react": ">=17 <= 18",
"react-dom": ">=17 <= 18"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=8.0.0"
}
}