-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.75 KB
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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start-mobile": "expo start",
"start-web": "cd web && react-scripts start",
"build-web": "cd web && react-scripts build",
"test-web": "cd web && react-scripts test",
"eject-web": "cd web && react-scripts eject",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"server-dev": "nodemon server/index.js",
"server": "node index.js"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/samples": "~3.0.0",
"@expo/vector-icons": "^10.0.1",
"@react-navigation/web": "^1.0.0-alpha.9",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.0.0",
"expo": "^33.0.0",
"expo-asset": "^5.0.0",
"expo-av": "^5.0.2",
"expo-constants": "^5.0.0",
"expo-font": "^5.0.0",
"expo-web-browser": "^5.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.0",
"morgan": "^1.9.1",
"nodemailer": "^6.3.0",
"pg": "^7.11.0",
"react": "^16.8.3",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-autocomplete-input": "^4.1.0",
"react-native-keyboard-accessory": "^0.1.9",
"react-native-web": "^0.11.4",
"react-navigation": "^3.11.0",
"react-scripts": "^3.0.1",
"reactstrap": "^8.0.1",
"styled-components": "^4.3.2",
"validator": "^11.1.0"
},
"devDependencies": {
"babel-preset-expo": "^5.1.1",
"jest-expo": "^33.0.0",
"nodemon": "^1.19.1"
},
"private": true,
"proxy": "http://localhost:4000"
}