-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "apifm",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "cd android && ./gradlew clean && cd .. && npm cache clean --force && npx react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"generate-schema": "generate-airtable-schema"
},
"airtable-schema-generator": {
"mode": "auto-headless",
"output": "./src/lib/"
},
"dependencies": {
"@calblueprint/airlock": "^0.7.4",
"@expo-google-fonts/josefin-sans": "^0.2.2",
"@mdi/font": "^6.5.95",
"@mdi/js": "^6.5.95",
"@react-native-async-storage/async-storage": "^1.17.10",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/drawer": "^6.4.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.2.5",
"@react-navigation/stack": "^6.0.11",
"@reduxjs/toolkit": "^1.8.3",
"airtable": "^0.11.1",
"core-js": "^3.24.1",
"end-of-stream": "^1.4.4",
"intl": "^1.2.5",
"jetifier": "^2.0.0",
"lodash": "^4.17.21",
"map-visit": "^1.0.0",
"metro-core": "^0.71.2",
"prop-types": "^15.8.0",
"puppeteer": "^14.1.1",
"react": "17.0.2",
"react-native": "0.66.4",
"react-native-bcrypt": "^2.4.0",
"react-native-config": "^1.4.5",
"react-native-drop-shadow": "^0.0.4",
"react-native-gesture-handler": "^2.1.3",
"react-native-pager-view": "^5.4.15",
"react-native-paper": "^4.11.1",
"react-native-reanimated": "^2.9.1",
"react-native-safe-area-context": "^3.4.1",
"react-native-screens": "^3.13.1",
"react-native-vector-icons": "^9.0.0",
"react-navigation": "^4.4.4",
"react-navigation-stack": "^2.10.4",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@iconify/react": "^3.2.1",
"@react-native-community/eslint-config": "^3.0.1",
"airtable-schema-generator": "^1.6.0",
"babel-jest": "^27.4.5",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.5",
"jetifier": "^2.0.0",
"metro-react-native-babel-preset": "^0.66.2",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}