mirror of
https://gh.wpcy.net/https://github.com/syntatis/kubrick.git
synced 2026-04-24 21:32:44 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59 lines
2.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"name": "@syntatis/monorepo",
|
|
"description": "Classic Admin UI for WordPress® built with React.js",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=22",
|
|
"npm": ">=10"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"website"
|
|
],
|
|
"devDependencies": {
|
|
"@storybook/addon-a11y": "^9.1.5",
|
|
"@storybook/addon-links": "^9.1.5",
|
|
"@storybook/addon-themes": "^9.1.5",
|
|
"@storybook/react-vite": "^9.1.5",
|
|
"@syntatis/eslint-config": "file:./packages/eslint-config",
|
|
"@syntatis/kubrick": "file:./packages/kubrick",
|
|
"@syntatis/kubrick-dev": "file:./packages/kubrick-dev",
|
|
"@syntatis/stylelint-config": "file:./packages/stylelint-config",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/react": "^18.2.48",
|
|
"@types/react-dom": "^18.3.7",
|
|
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
|
"@typescript-eslint/parser": "^8.40.0",
|
|
"@wordpress/icons": "^10.30.0",
|
|
"chromatic": "^13.1.4",
|
|
"eslint": "^9.35.0",
|
|
"eslint-plugin-storybook": "^9.1.5",
|
|
"lerna": "^8.2.3",
|
|
"prettier": "^3.6.2",
|
|
"storybook": "^9.0.12",
|
|
"stylelint": "^16.23.1",
|
|
"typescript": "^5.9.2",
|
|
"@storybook/addon-docs": "^9.1.5"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build -w @syntatis/kubrick -w @syntatis/kubrick-dev",
|
|
"chromatic": "chromatic --build-script-name=storybook:build",
|
|
"format": "npm run format:scripts && npm run format:styles",
|
|
"format:scripts": "eslint . --fix",
|
|
"format:styles": "stylelint '**/*.scss' --fix",
|
|
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:types",
|
|
"lint:scripts": "eslint .",
|
|
"lint:styles": "stylelint '**/*.scss'",
|
|
"lint:types": "tsc --noEmit",
|
|
"storybook": "storybook dev -p 6007",
|
|
"storybook:build": "storybook build",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"test:coverage": "npm run test:coverage --workspaces --if-present",
|
|
"test:watch": "npm run test:watch ---workspaces --if-present",
|
|
"website:build": "npm run build -w @syntatis/website",
|
|
"website:dev": "npm run dev -w @syntatis/website",
|
|
"website:preview": "npm run preview -w @syntatis/website"
|
|
}
|
|
}
|