Skip to content

Commit

Permalink
Install VLT
Browse files Browse the repository at this point in the history
  • Loading branch information
tisto committed Mar 7, 2024
1 parent fd9c552 commit bbba333
Show file tree
Hide file tree
Showing 4 changed files with 27,705 additions and 38 deletions.
21 changes: 18 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,17 @@
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"private": false,
"workspaces": [
"src/addons/volto-plone-edu"
],
"addons": [
"@eeacms/volto-accordion-block",
"@kitconcept/volto-button-block",
"@kitconcept/volto-heading-block",
"@kitconcept/volto-introduction-block",
"@kitconcept/volto-highlight-block",
"@kitconcept/volto-separator-block",
"@kitconcept/volto-light-theme",
"volto-plone-edu"
],
"jest": {
Expand Down Expand Up @@ -141,6 +147,15 @@
"node": "^16 || ^18 || ^20"
},
"dependencies": {
"@eeacms/volto-accordion-block": "^10.4.0",
"@kitconcept/volto-button-block": "^2.3.1",
"@kitconcept/volto-dsgvo-banner": "^1.3.0",
"@kitconcept/volto-heading-block": "^2.4.0",
"@kitconcept/volto-highlight-block": "^3.0.0",
"@kitconcept/volto-introduction-block": "^1.0.0",
"@kitconcept/volto-light-theme": "^2.0.0",
"@kitconcept/volto-separator-block": "^4.0.0",
"@kitconcept/volto-slider-block": "^6.0.0",
"@plone/volto": "18.0.0-alpha.18"
},
"devDependencies": {
Expand Down Expand Up @@ -170,5 +185,5 @@
"react-error-overlay": "6.0.9"
},
"packageManager": "yarn@3.2.3",
"theme": "volto-plone-edu"
}
"theme": "@kitconcept/volto-light-theme"
}
8 changes: 4 additions & 4 deletions frontend/src/addons/volto-plone-edu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"release-rc": "release-it --preRelease=rc"
},
"devDependencies": {
"@plone/scripts": "^3.0.0",
"@babel/eslint-parser": "7.22.15",
"@plone/scripts": "^3.0.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-react-app": "7.0.1",
Expand Down Expand Up @@ -52,7 +52,7 @@
],
"dependencies": {
"@eeacms/volto-accordion-block": "*",
"@kitconcept/volto-slider-block": "*",
"@eeacms/volto-matomo": "*"
"@eeacms/volto-matomo": "*",
"@kitconcept/volto-slider-block": "*"
}
}
}
76 changes: 45 additions & 31 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,47 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "commonjs",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@plone/volto/*": ["../node_modules/@plone/volto/src/*", "../node_modules/@plone/volto/types/*"],
"@root/*": ["."]
"compilerOptions": {
"target": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"module": "commonjs",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@plone/volto/*": [
"../node_modules/@plone/volto/src/*",
"../node_modules/@plone/volto/types/*"
],
"@root/*": [
"."
],
"volto-plone-edu": [
"addons/volto-plone-edu/src"
]
},
"baseUrl": "src"
},
"baseUrl": "src"
},
"include": ["src"],
"exclude": [
"node_modules",
"build",
"public",
"coverage",
"src/**/*.test.{js,jsx,ts,tsx}",
"src/**/*.spec.{js,jsx,ts,tsx}",
"src/**/*.stories.{js,jsx,ts,tsx}"
]
}
"include": [
"src"
],
"exclude": [
"node_modules",
"build",
"public",
"coverage",
"src/**/*.test.{js,jsx,ts,tsx}",
"src/**/*.spec.{js,jsx,ts,tsx}",
"src/**/*.stories.{js,jsx,ts,tsx}"
]
}
Loading

0 comments on commit bbba333

Please sign in to comment.