-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "hybrid-app-example",
"version": "1.0.0",
"description": "This guide will walk you through the process of building a Hybrid App which allows a user to generate images from a Designer Extension using OpenAI’s Dall-E service and add them to a site’s assets. A Hybrid App uses the capabilities of both a [Data Client App](https://docs.developers.webflow.com/v2.0.0/docs/build-a-data-client) and a [Designer Extension](https://docs.developers.webflow.com/v2.0.0/docs/getting-started-1). Please read through our documentation to familiarize yourself with these concepts.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "cd data-client && npm install && npm run dev",
"client": "cd designer-extension && npm install && npm run dev",
"dev": "npx concurrently \"npm run client\" \"npm run server\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@webflow/webflow-cli": "^1.6.12",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"webflow-api": "latest"
}
}