-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
110 lines (110 loc) · 4.09 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
105
106
107
108
109
110
{
"private": true,
"name": "@zendeskgarden/react-components",
"version": "0.0.0",
"scripts": {
"build": "lerna run build --stream",
"build:demo": "storybook build -o ./demo",
"format": "prettier-package-json --write && npm run -- format:package_json --write && npm run -- format:js --write && npm run -- format:md --write",
"format:all": "prettier-package-json --list-different && npm run -- format:package_json --list-different && npm run -- format:js --check && npm run -- format:md --check",
"format:js": "prettier --log-level warn '{packages,utils}/**/*.{js,mjs,ts,tsx}' '!packages/.template' '!packages/**/dist/**'",
"format:md": "prettier --log-level warn 'packages/**/*.{md,mdx}'",
"format:package_json": "lerna exec -- prettier-package-json",
"postinstall": "husky",
"lint": "npm run lint:css && npm run lint:js && npm run lint:md",
"lint:ci": "npm run lint && npm run format:all && npm exec tsc",
"lint:css": "stylelint '{packages,utils}/**/*.{js,ts,tsx}'",
"lint:js": "eslint --max-warnings 0",
"lint:md": "markdownlint README.md packages/*/README.md packages/*/demo/**/*.mdx",
"new": "utils/scripts/new.mjs",
"prepare": "npm run build",
"start": "storybook dev --no-version-updates -p 6006",
"tag": "utils/scripts/tag.mjs",
"test": "jest --config=utils/test/jest.config.js",
"test:ci": "npm test -- --coverage --silent",
"test:watch": "npm test -- --watch",
"preversion": "npm run test:ci",
"version": "npm run build && git add -A"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.8",
"@babel/preset-env": "7.25.8",
"@babel/preset-react": "7.25.7",
"@babel/preset-typescript": "7.25.7",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "6.0.1",
"@storybook/addon-a11y": "7.6.20",
"@storybook/addon-designs": "8.0.3",
"@storybook/addon-essentials": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-webpack5": "7.6.20",
"@svgr/rollup": "8.1.0",
"@svgr/webpack": "8.1.0",
"@swc/core": "1.7.35",
"@swc/jest": "0.2.36",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.13",
"@types/prop-types": "15.7.13",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/styled-components": "5.1.34",
"@zendeskgarden/css-bedrock": "10.0.0",
"@zendeskgarden/eslint-config": "44.0.1",
"@zendeskgarden/scripts": "2.4.2",
"@zendeskgarden/stylelint-config": "22.0.0",
"@zendeskgarden/svg-icons": "7.3.0",
"babel-plugin-module-resolver": "5.0.2",
"babel-plugin-react-remove-properties": "0.3.0",
"babel-plugin-styled-components": "2.1.4",
"commander": "12.1.0",
"core-js": "3.38.1",
"envalid": "8.0.0",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"execa": "9.4.0",
"husky": "9.1.6",
"identity-obj-proxy": "3.0.0",
"inquirer": "12.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-styled-components": "7.2.0",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.42.0",
"micromatch": "4.0.8",
"mockdate": "3.0.5",
"ora": "8.1.0",
"pluralize": "8.0.0",
"postcss-styled-syntax": "0.6.4",
"prettier": "3.3.3",
"prettier-package-json": "2.8.0",
"qs": "6.13.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"react-test-renderer": "18.3.1",
"regenerator-runtime": "0.14.1",
"rollup": "4.24.0",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-delete": "2.1.0",
"rollup-plugin-typescript2": "0.36.0",
"storybook": "7.6.20",
"styled-components": "5.3.11",
"stylelint": "16.10.0",
"stylelint-order": "6.0.4",
"temp": "0.9.4",
"typescript": "5.6.3",
"webpack": "5.95.0"
}
}