mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
92fa6233d3
## Summary Provide details about your pull request and what it adds, fixes, or changes. Photos and videos are recommended. - Filters out `@n8n/chat` and `n8n-design-system` from `pnpm run dev` - Fixes dev/build error appearing due to code string `import ... from '@n8n/chat'` #### How to test the change: 1. `pnpm run dev` should work as expected 2. The command should not run for the two packages above 3. The error regarding `@n8n/chat` should no longer appear ## Issues fixed Include links to Github issue or Community forum post or **Linear ticket**: > Important in order to close automatically and provide context to reviewers https://linear.app/n8n/issue/PAY-1089/run-dev-command-only-for-core-packages ## Review / Merge checklist - [x] PR title and summary are descriptive. **Remember, the title automatically goes into the changelog. Use `(no-changelog)` otherwise.** ([conventions](https://github.com/n8n-io/n8n/blob/master/.github/pull_request_title_conventions.md)) - [x] [Docs updated](https://github.com/n8n-io/n8n-docs) or follow-up ticket created. - [x] Tests included. N/A > A bug is not considered fixed, unless a test is added to prevent it from happening again. A feature is not complete without tests. > > *(internal)* You can use Slack commands to trigger [e2e tests](https://www.notion.so/n8n/How-to-use-Test-Instances-d65f49dfc51f441ea44367fb6f67eb0a?pvs=4#a39f9e5ba64a48b58a71d81c837e8227) or [deploy test instance](https://www.notion.so/n8n/How-to-use-Test-Instances-d65f49dfc51f441ea44367fb6f67eb0a?pvs=4#f6a177d32bde4b57ae2da0b8e454bfce) or [deploy early access version on Cloud](https://www.notion.so/n8n/Cloudbot-3dbe779836004972b7057bc989526998?pvs=4#fef2d36ab02247e1a0f65a74f6fb534e).
85 lines
2.6 KiB
JSON
85 lines
2.6 KiB
JSON
{
|
|
"name": "n8n-design-system",
|
|
"version": "1.14.0",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Mutasem Aldmour",
|
|
"email": "mutasem@n8n.io"
|
|
},
|
|
"main": "src/main.ts",
|
|
"import": "src/main.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "pnpm run storybook",
|
|
"clean": "rimraf dist .turbo",
|
|
"build": "vite build",
|
|
"typecheck": "vue-tsc --declaration --emitDeclarationOnly",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest",
|
|
"build:storybook": "storybook build",
|
|
"storybook": "storybook dev -p 6006",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint src --ext .js,.ts,.vue --quiet",
|
|
"lintfix": "eslint src --ext .js,.ts,.vue --fix"
|
|
},
|
|
"peerDependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "1.x",
|
|
"@fortawesome/free-solid-svg-icons": "5.x",
|
|
"@fortawesome/vue-fontawesome": "2.x",
|
|
"core-js": "3.x",
|
|
"markdown-it": "^12.3.2",
|
|
"markdown-it-emoji": "^2.0.0",
|
|
"markdown-it-link-attributes": "^4.0.0",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"vue": "^2.7.14",
|
|
"xss": "^1.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
"@fortawesome/vue-fontawesome": "^3.0.3",
|
|
"@storybook/addon-a11y": "^7.5.2",
|
|
"@storybook/addon-actions": "^7.5.2",
|
|
"@storybook/addon-docs": "^7.5.2",
|
|
"@storybook/addon-essentials": "^7.5.2",
|
|
"@storybook/addon-links": "^7.5.2",
|
|
"@storybook/addon-postcss": "3.0.0-alpha.1",
|
|
"@storybook/vue3": "^7.5.2",
|
|
"@storybook/vue3-vite": "^7.5.2",
|
|
"@testing-library/jest-dom": "^5.17.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@testing-library/vue": "^7.0.0",
|
|
"@types/markdown-it": "^12.2.3",
|
|
"@types/markdown-it-emoji": "^2.0.2",
|
|
"@types/markdown-it-link-attributes": "^3.0.1",
|
|
"@types/sanitize-html": "^2.9.0",
|
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
"@vue/test-utils": "^2.4.1",
|
|
"autoprefixer": "^10.4.14",
|
|
"core-js": "^3.31.0",
|
|
"jsdom": "21.1.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"sass": "^1.64.1",
|
|
"sass-loader": "^13.3.2",
|
|
"storybook": "^7.5.2",
|
|
"storybook-addon-themes": "^6.1.0",
|
|
"storybook-dark-mode": "^3.0.1"
|
|
},
|
|
"dependencies": {
|
|
"element-plus": "^2.3.6",
|
|
"markdown-it": "^13.0.1",
|
|
"markdown-it-emoji": "^2.0.2",
|
|
"markdown-it-link-attributes": "^4.0.1",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"sanitize-html": "2.10.0",
|
|
"vue": "^3.3.4",
|
|
"vue-boring-avatars": "^1.3.0",
|
|
"xss": "^1.0.14"
|
|
}
|
|
}
|