feat: Contentstack <-> ImageVault integration

This commit is contained in:
Michael Zetterberg
2024-03-25 11:38:14 +01:00
parent 920cbf241a
commit a706b9cf8a
39 changed files with 16647 additions and 0 deletions

38
package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "@scandichotels/contentstack-imagevault",
"version": "1.0.0",
"private": true,
"description": "Integration between Contentstack and ImageVault",
"workspaces": [
"remix",
"rte"
],
"scripts": {
"build": "npm run build --workspaces",
"dev": "concurrently npm:dev:*",
"dev:remix": "cd remix && npm run dev",
"dev:rte": "cd rte && npm run dev"
},
"dependencies": {
"@contentstack/app-sdk": "^2.0.1",
"@contentstack/venus-components": "2.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"concurrently": "^8.2.2",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
}
}