-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "dynamic-calendar",
"version": "1.3.24",
"license": "MIT",
"author": "Adalo",
"description": "Display a list of events on a calendar. Also includes option for an agenda view.",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js --ignore-path .gitignore .",
"start": "adalo dev",
"build": "adalo build",
"login": "adalo login",
"start:local": "ADALO_DEV_SERVER=http://localhost:3035 yarn start",
"login:local": "ADALO_BACKEND_SERVER=http://localhost:8084 yarn run login",
"deploy": "adalo deploy",
"deploy:local": "REGISTRY_URL=http://localhost:8000 yarn run deploy",
"publish": " adalo publish",
"publish:local": "REGISTRY_URL=http://localhost:8000 yarn run publish"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"react-native": "*"
},
"devDependencies": {
"@adalo/cli": "^0.0.57",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"react": "^16.13.1",
"react-art": "^16.13.1",
"react-dom": "^16.13.1",
"react-native-web": "^0.9.5"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-native-fontawesome": "^0.2.5",
"moment": "^2.26.0",
"react-native-calendars": "1.1260.0",
"react-native-svg": "^12.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshjhargreaves/react-native-event-calendar.git"
}
}