Skip to content

Commit

Permalink
[DEPS] Enforce default deps installation
Browse files Browse the repository at this point in the history
  • Loading branch information
amivanoff committed Jun 23, 2021
1 parent fdbbccd commit 0227439
Show file tree
Hide file tree
Showing 4 changed files with 696 additions and 542 deletions.
14 changes: 11 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@
"editor.formatOnSave": true,
"files.eol": "\n",
"editor.tabSize": 2,
//"files.autoSave": "afterDelay",
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.endOfLine": "lf"
"prettier.endOfLine": "lf",
"jest.autoRun": "off"
}
81 changes: 39 additions & 42 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentlab/ldkg-ui-react",
"version": "0.1.6",
"version": "0.1.7",
"description": "LDKG Forms UI Components",
"license": "GPL-3.0",
"author": "Alexey Ivanov <[email protected]>",
Expand Down Expand Up @@ -33,7 +33,7 @@
"lint-staged": "lint-staged"
},
"peerDependencies": {
"@agentlab/sparql-jsld-client": ">=5.0.0-rc.5",
"@agentlab/sparql-jsld-client": ">=5.0.0-rc.7",
"@ant-design/icons": ">=4.6.2",
"@tinymce/tinymce-react": ">=3.12.6",
"antd": ">=4.16.3",
Expand All @@ -46,46 +46,60 @@
"react": ">=17.0.2",
"react-dom": ">=17.0.2",
"react-error-boundary": ">=3.1.3",
"react-router": "5.2.0",
"react-router-dom": "6.0.0-beta.0",
"react-router": ">=6.0.0-beta.0",
"react-router-dom": ">=6.0.0-beta.0",
"react-virtualized": ">=9.22.3",
"rc-util": ">=5.13.1",
"tinymce": ">=5.5.1",
"uri-js": ">=4.4.1"
},
"devDependencies": {
"@agentlab/sparql-jsld-client": "^5.0.0-rc.5",
"dependencies": {
"@agentlab/sparql-jsld-client": "^5.0.0-rc.7",
"@ant-design/icons": "^4.6.2",
"@tinymce/tinymce-react": "^3.12.6",
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router": "^5.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/react-virtualized": "^9.21.11",
"@types/tinymce": "^4.6.2",
"antd": "^4.16.3",
"history": "^5.0.0",
"mobx-react-lite": "^3.2.0",
"react": "^17.0.2",
"react-is": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-virtualized": "^9.22.3",
"tinymce": "5.5.1",
"uri-js": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@rdfjs/data-model": "^1.2.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/node-logger": "^6.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/addon-actions": "^6.3.0",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-links": "^6.3.0",
"@storybook/addons": "^6.3.0",
"@storybook/node-logger": "^6.3.0",
"@storybook/preset-ant-design": "^0.0.2",
"@storybook/react": "^6.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@tinymce/tinymce-react": "^3.12.6",
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router": "^5.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/react-virtualized": "^9.21.11",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@types/tinymce": "^4.6.2",
"antd": "^4.16.3",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
Expand All @@ -97,26 +111,13 @@
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest": "^27.0.5",
"jest-watch-typeahead": "^0.6.4",
"history": "^5.0.0",
"lint-staged": "^11.0.0",
"lodash-es": "^4.17.21",
"mobx": "^6.3.2",
"mobx-react-lite": "^3.2.0",
"mobx-state-tree": "^5.0.2",
"moment": "^2.29.1",
"mst-middlewares": "^5.0.2",
"prettier": "^2.3.1",
"postcss": "^8.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-is": "^17.0.2",
"react-redux": "^7.2.4",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0",
"react-virtualized": "^9.22.3",
"redux": "^4.1.0",
"remotedev": "^0.2.9",
"rimraf": "^3.0.2",
Expand All @@ -125,17 +126,13 @@
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"autoprefixer": "^10.2.6",
"cssnano": "^5.0.4",
"sass": "^1.32.12",
"sass-loader": "10.1.1",
"storybook-css-modules-preset": "^1.1.1",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.3",
"tslib": "^2.3.0",
"tinymce": "5.5.1",
"typescript": "4.2.4",
"uri-js": "^4.4.1",
"typescript-plugin-css-modules": "^3.4.0"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"compilerOptions": {
"module": "es2020",
"target": "es2019",
"lib": ["dom", "esnext"]
"lib": ["dom", "dom.iterable", "esnext"]
//"types": []
}
}
Loading

0 comments on commit 0227439

Please sign in to comment.