Skip to content

Commit

Permalink
got editor basic working, cleaned up relationships related dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ogheneovo12 committed Dec 14, 2023
1 parent aba7ef2 commit 07ace39
Show file tree
Hide file tree
Showing 98 changed files with 21,737 additions and 291 deletions.
54 changes: 53 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"node": "18"
},
"scripts": {
"dev:example": "vite",
"dev": "storybook dev -p 6006",
"build": "storybook build",
"build:lib": "tsc && vite build",
Expand All @@ -33,8 +34,36 @@
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\""
},
"dependencies": {
"@braintree/sanitize-url": "^7.0.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.11.1",
"@emotion/weak-memoize": "^0.3.1",
"@keystone-ui/button": "^7.0.2",
"@keystone-ui/core": "^5.0.2",
"@keystone-ui/fields": "^7.2.0",
"@keystone-ui/icons": "^6.0.2",
"@keystone-ui/modals": "^6.0.3",
"@keystone-ui/popover": "^6.0.2",
"@keystone-ui/tooltip": "^6.0.2",
"apply-ref": "^1.0.0",
"io-ts": "^2.2.21",
"io-ts-excess": "^1.0.1",
"is-hotkey": "^0.2.0",
"match-sorter": "^6.3.1",
"mdast-util-from-markdown": "^0.8.5",
"mdast-util-gfm-autolink-literal": "^0.1.3",
"mdast-util-gfm-strikethrough": "0.2.3",
"micromark-extension-gfm-autolink-literal": "0.5.7",
"micromark-extension-gfm-strikethrough": "^0.6.5",
"react": "18.2.0",
"react-dom": "18.2.0"
"react-dom": "18.2.0",
"scroll-into-view-if-needed": "^3.1.0",
"slate": "^0.101.1",
"slate-history": "^0.100.0",
"slate-hyperscript": "^0.100.0",
"slate-react": "^0.101.2"
},
"devDependencies": {
"@babel/core": "7.22.10",
Expand All @@ -47,6 +76,8 @@
"@storybook/react-vite": "7.2.2",
"@storybook/testing-library": "0.2.0",
"@testing-library/react": "14.0.0",
"@types/is-hotkey": "^0.1.10",
"@types/jest": "^29.5.11",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
Expand All @@ -64,11 +95,15 @@
"eslint-plugin-react": "7.33.1",
"eslint-plugin-storybook": "0.6.13",
"husky": "8.0.3",
"jest": "^29.7.0",
"jest-diff": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "22.1.0",
"json": "11.0.0",
"lint-staged": "13.2.3",
"postcss": "8.4.27",
"prettier": "3.0.1",
"pretty-format": "^29.7.0",
"prop-types": "15.8.1",
"storybook": "7.2.2",
"tailwindcss": "3.3.3",
Expand All @@ -88,5 +123,22 @@
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier -w"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"packages/**/*.{js,ts,tsx}",
"!**/*.d.ts",
"!packages/**/dist/**",
"!packages/core/src/fields/**/test-fixtures.{js,ts}"
],
"transform": {
"^.+\\.[tj]sx?$": [
"esbuild-jest",
{
"target": "esnext"
}
]
}
}
}
Loading

0 comments on commit 07ace39

Please sign in to comment.