-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
109 lines (109 loc) · 4.04 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
{
"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.26.4",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@storybook/addon-a11y": "7.6.20",
"@storybook/addon-designs": "8.0.4",
"@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.10.1",
"@swc/jest": "0.2.37",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/prop-types": "15.7.14",
"@types/react": "18.3.17",
"@types/react-dom": "18.3.5",
"@zendeskgarden/css-bedrock": "10.0.1",
"@zendeskgarden/eslint-config": "45.0.0",
"@zendeskgarden/scripts": "2.4.3",
"@zendeskgarden/stylelint-config": "22.0.0",
"@zendeskgarden/svg-icons": "7.5.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.39.0",
"envalid": "8.0.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"execa": "9.5.2",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"inquirer": "12.2.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-styled-components": "7.2.0",
"lerna": "8.1.9",
"lint-staged": "15.2.11",
"markdownlint-cli": "0.43.0",
"micromatch": "4.0.8",
"mockdate": "3.0.5",
"ora": "8.1.1",
"pluralize": "8.0.0",
"postcss-styled-syntax": "0.7.0",
"prettier": "3.4.2",
"prettier-package-json": "2.8.0",
"qs": "6.13.1",
"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.28.1",
"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": "6.1.13",
"stylelint": "16.12.0",
"stylelint-order": "6.0.4",
"temp": "0.9.4",
"typescript": "5.7.2",
"webpack": "5.97.1"
}
}