-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
109 lines (109 loc) · 3.91 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
{
"name": "kaizen",
"private": true,
"engines": {
"node": ">=v20.15.1"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"storybook": "pnpm dev",
"dev": "pnpm turbo dev",
"build": "pnpm turbo build",
"clean": "pnpm turbo clean && rimraf node_modules && pnpm store prune",
"test": "pnpm turbo test -- --run",
"lint": "pnpm lint:eslint && pnpm lint:format && pnpm lint:styles",
"lint:ts": "pnpm turbo lint:ts",
"lint:eslint": "pnpm eslint --max-warnings=0",
"lint:format": "pnpm prettier --check '**/*'",
"lint:scss": "pnpm stylelint '**/*.scss' --config .stylelintrc-scss.json",
"lint:css": "pnpm stylelint '**/*.css' --config .stylelintrc-css.mjs",
"lint:styles": "pnpm lint:scss && pnpm lint:css",
"lint:styles:fix": "pnpm lint:scss --fix && pnpm lint:css --fix",
"lint:fix": "pnpm lint:styles:fix && pnpm lint:eslint --fix && pnpm lint:format --write",
"reset": "pnpm clean && pnpm install --force",
"chromatic": "chromatic",
"changeset": "changeset",
"plop": "plop",
"pkg:aio": "pnpm -F @kaizen/components",
"pkg:tokens": "pnpm -F @kaizen/design-tokens",
"pkg:tailwind": "pnpm -F @kaizen/tailwind",
"pkg:bundler": "pnpm -F @kaizen/package-bundler",
"ci:version": "pnpm turbo build && pnpm changeset version",
"ci:publish": "pnpm turbo build && pnpm changeset publish",
"update-icons": "pnpm pkg:aio update-icons",
"i18n:extract": "pnpm pkg:aio i18n:extract",
"i18n:extract:remove-obsolete": "pnpm pkg:aio i18n:extract --deleteObsoleteTranslations"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@cultureamp/changelog-github": "^0.1.1",
"@eslint/js": "^9.16.0",
"@storybook/addon-a11y": "8.3.6",
"@storybook/addon-actions": "8.3.6",
"@storybook/addon-backgrounds": "8.3.6",
"@storybook/addon-essentials": "8.3.6",
"@storybook/addon-interactions": "8.3.6",
"@storybook/addon-links": "8.3.6",
"@storybook/blocks": "8.3.6",
"@storybook/components": "8.3.6",
"@storybook/core-events": "8.3.6",
"@storybook/react": "8.3.6",
"@storybook/test": "8.3.6",
"@storybook/theming": "8.3.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.17.9",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@vitest/eslint-plugin": "^1.1.14",
"chromatic": "^11.20.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"globals": "^15.13.0",
"node-fetch": "^3.3.2",
"playwright": "^1.49.0",
"plop": "^4.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"storybook-addon-pseudo-states": "^4.0.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^14.0.0",
"turbo": "^2.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.10",
"vitest": "^2.1.8",
"vitest-axe": "^0.1.0"
},
"devDependenciesComments": {
"@storybook/*": "Required for Storybook stories across all packages",
"chromatic": "Required for Storybook stories across all packages",
"playwright": "Required for github actions setup",
"vite-plugin-node-polyfills": "Adds the node `assert` polyfill to Vite for prosemirror to run in storybook"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18",
"eslint": "9"
}
}
}
}