-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"test": "jest __tests__/server/ --collect-coverage ",
"testDebug": "jest -o --watch --coverage",
"testFinal": "jest",
"updateSnapshots": "jest -u --coverage=false",
"lint": "eslint --ext js,tsx {src,server}/*",
"server": "nodemon server/server.js",
"dev": "run-p server start",
"clean": "rm -rf node_modules .yarnclean && yarn",
"postinstall": "jetify && jetify"
},
"lint-staged": {
"*.{js,tsx}": [
"eslint --fix"
]
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"rnpm": {
"assets": [
"assets/fonts"
]
},
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/cameraroll": "^1.6.0",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/core": "^3.0.0-alpha.13",
"@react-navigation/web": "^1.0.0-alpha.9",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@types/react": "^16.9.0",
"@types/react-native": "^0.60.15",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-test-renderer": "^16.9.1",
"airtable": "^0.8.1",
"bcrypt": "^3.0.7",
"core-js": "^3",
"core-util-is": "^1.0.2",
"dotenv": "^8.2.0",
"express-session": "^1.17.0",
"googleapis": "^49.0.0",
"mem": "^6.0.1",
"metro-react-native-babel-preset": "^0.59.0",
"nodemailer": "^6.4.6",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-native": "~0.61.4",
"react-native-animated-ellipsis": "^2.0.0",
"react-native-background-timer": "^2.2.0",
"react-native-camera": "^3.23.1",
"react-native-confirmation-code-field": "^6.0.0",
"react-native-convert-ph-asset": "^1.0.3",
"react-native-dotenv": "^0.2.0",
"react-native-elements": "^1.2.7",
"react-native-ffmpeg": "^0.4.4",
"react-native-gesture-handler": "~1.5.0",
"react-native-modal": "^11.5.3",
"react-native-orientation": "^3.1.3",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-unimodules": "~0.7.0",
"react-native-vector-icons": "^6.6.0",
"react-native-video": "^4.4.5",
"react-native-web": "^0.11.7",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^2.0.13",
"react-navigation-tabs": "^2.7.0",
"react-redux": "^7.2.0",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"reselect": "^4.0.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"babel-preset-react-native": "5.0.2",
"body-parser": "^1.19.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.1.2",
"express": "^4.17.1",
"handlebars": "^4.7.1",
"husky": "^3.1.0",
"jest": "^25.4.0",
"lint-staged": "^10.0.0-beta.14",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-test-renderer": "16.12.0",
"redux-devtools": "^3.5.0",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0"
},
"private": true,
"proxy": "http://localhost:3001"
}