-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "webflow_local_bridge",
"version": "1.0.0",
"description": "Run and deploy custom code to your webflow websites with ease",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.cjs",
"dev": "nodemon ./index.cjs",
"bridge": "node ./command.js"
},
"bin": {
"webflowbridge": "./command.js"
},
"keywords": [
"webflow",
"cli"
],
"author": "Ansima",
"license": "ISC",
"dependencies": {
"axios": "^1.6.7",
"colors": "^1.4.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"fast-xml-parser": "^4.3.4",
"form-data": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"nodemon": "^3.0.3",
"webflow": "^0.2.2",
"webflow-api": "^1.3.1",
"ws": "^8.16.0"
},
"devDependencies": {
"wrangler": "^3.28.3"
}
}