-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 949 Bytes
/
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
{
"name": "twitter-timeline",
"description": "Embed a twitter timeline with customized settings.",
"version": "1.2.0",
"main": "index.js",
"license": "MIT",
"author": "amezousan",
"homepage": "https://github.com/amezousan/adalo-twitter-timeline",
"scripts": {
"start": "adalo dev",
"login": "adalo login",
"publish": "adalo publish",
"prettier": "prettier --write *.js \"src/**/*.js\""
},
"adalo": {
"logo": "./logo.png",
"displayName": "Twitter Timeline",
"components": [
{
"name": "TwitterTimeline",
"manifest": "./src/components/TwitterTimeline/manifest.json"
}
]
},
"devDependencies": {
"@adalo/cli": "^0.0.40",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-art": "^16.13.1",
"react-dom": "^16.13.1",
"react-native-web": "^0.9.13",
"react-native-webview": "*"
},
"dependencies": {
"react-twitter-widgets": "^1.9.5"
}
}